Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
77cd6fe0
Commit
77cd6fe0
authored
May 14, 2018
by
Mark Andrews
Committed by
Michał Kępień
May 14, 2018
Browse files
return untested if not built with OPENSSL or PKCS11CRYPTO
(cherry picked from commit
9d8bab64
)
parent
08f84c8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/dns/tests/sigs_test.c
View file @
77cd6fe0
...
...
@@ -15,6 +15,9 @@
#include
<atf-c.h>
#include
<isc/util.h>
#if defined(OPENSSL) || defined(PKCS11CRYPTO)
#include
<dns/db.h>
#include
<dns/dnssec.h>
#include
<dns/rdatatype.h>
...
...
@@ -437,9 +440,23 @@ ATF_TC_BODY(updatesigs, tc) {
dns_test_end
();
}
#else
ATF_TC
(
untested
);
ATF_TC_HEAD
(
untested
,
tc
)
{
atf_tc_set_md_var
(
tc
,
"descr"
,
"skipping dns__zone_updatesigs() test"
);
}
ATF_TC_BODY
(
untested
,
tc
)
{
UNUSED
(
tc
);
atf_tc_skip
(
"DNSSEC support not compiled in"
);
}
#endif
ATF_TP_ADD_TCS
(
tp
)
{
#if defined(OPENSSL) || defined(PKCS11CRYPTO)
ATF_TP_ADD_TC
(
tp
,
updatesigs
);
#else
ATF_TP_ADD_TC
(
tp
,
untested
);
#endif
return
(
atf_no_error
());
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment