summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBenjamin Kaduk <kaduk@mit.edu>2017-06-24 21:46:36 -0500
committerBenjamin Kaduk <kaduk@mit.edu>2017-06-24 21:46:36 -0500
commitb996766aa87d5c918e96782f43021e9050a7c079 (patch)
tree2cbe0409efca2eb78a1e3d191e18ee98bf4eed58 /test
parent05594f4af3ad8c470c34fe97b0f109f167b1e20f (diff)
Fix no-dsa build again
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3762)
Diffstat (limited to 'test')
-rw-r--r--test/recipes/60-test_x509_check_cert_pkey.t11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/recipes/60-test_x509_check_cert_pkey.t b/test/recipes/60-test_x509_check_cert_pkey.t
index 51d2996784..d7ee642649 100644
--- a/test/recipes/60-test_x509_check_cert_pkey.t
+++ b/test/recipes/60-test_x509_check_cert_pkey.t
@@ -22,10 +22,13 @@ ok(run(test(["x509_check_cert_pkey_test",
ok(run(test(["x509_check_cert_pkey_test",
srctop_file("test", "certs", "servercert.pem"),
srctop_file("test", "certs", "wrongkey.pem"), "cert", "failed"])));
-# dsa
-ok(run(test(["x509_check_cert_pkey_test",
- srctop_file("test", "certs", "server-dsa-cert.pem"),
- srctop_file("test", "certs", "server-dsa-key.pem"), "cert", "ok"])));
+SKIP: {
+ skip "DSA disabled", 1, if disabled("dsa");
+ # dsa
+ ok(run(test(["x509_check_cert_pkey_test",
+ srctop_file("test", "certs", "server-dsa-cert.pem"),
+ srctop_file("test", "certs", "server-dsa-key.pem"), "cert", "ok"])));
+}
# ecc
SKIP: {
skip "EC disabled", 1 if disabled("ec");