Fix no-dsa build again
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3762)
This commit is contained in:
parent
05594f4af3
commit
b996766aa8
1 changed files with 7 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue