From: Richard Levitte Date: Sun, 2 Apr 2017 09:18:59 +0000 (+0200) Subject: Disable 15-test_ecparam.t when configured no-ec2m X-Git-Tag: OpenSSL_1_1_1-pre1~1885 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a4750ce55e7d6451c187b5ab9ccf5218e0851eeb;p=oweals%2Fopenssl.git 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 (Merged from https://github.com/openssl/openssl/pull/3103) --- diff --git a/test/recipes/15-test_ecparam.t b/test/recipes/15-test_ecparam.t index ec629e9977..9fabd3b277 100644 --- a/test/recipes/15-test_ecparam.t +++ b/test/recipes/15-test_ecparam.t @@ -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"));