mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-19 12:59:40 +00:00
Don't run MSBLOB conversion tests when RSA or DSA are disabled
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2174) (cherry picked from commit d8594555ffaf98ada08b26ce3d1138f16bc029c5)
This commit is contained in:
parent
ddc311f1d3
commit
4b74b51113
@ -34,6 +34,12 @@ ok(run(app([ 'openssl', 'rsa', '-check', '-in', srctop_file('test', 'testrsa.pem
|
||||
subtest 'rsa conversions -- private key PKCS#8' => sub {
|
||||
tconversion("rsa", srctop_file("test","testrsa.pem"), "pkey");
|
||||
};
|
||||
}
|
||||
|
||||
SKIP: {
|
||||
skip "Skipping msblob conversion test", 1
|
||||
if disabled("rsa") || disabled("dsa");
|
||||
|
||||
subtest 'rsa conversions -- public key' => sub {
|
||||
tconversion("msb", srctop_file("test","testrsapub.pem"), "rsa",
|
||||
"-pubin", "-pubout");
|
||||
|
Loading…
x
Reference in New Issue
Block a user