Disable 15-test_ecparam.t when configured no-ec2m
This test doesn't actually fail completely, but there's no real pattern to distinguish which data files should be omitted when no-ec2m is configured and which should not. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3103)
This commit is contained in:
parent
92e2ed5689
commit
a4750ce55e
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ use OpenSSL::Test::Utils;
|
|||
setup("test_ecparam");
|
||||
|
||||
plan skip_all => "EC isn't supported in this build"
|
||||
if disabled("ec");
|
||||
if disabled("ec") || disabled("ec2m");
|
||||
|
||||
my @valid = glob(data_file("valid", "*.pem"));
|
||||
my @invalid = glob(data_file("invalid", "*.pem"));
|
||||
|
|
Loading…
Reference in a new issue