From: Richard Levitte Date: Mon, 6 Feb 2017 16:49:41 +0000 (+0100) Subject: Because our test sid file contains EC, don't try it when configured no-ec X-Git-Tag: OpenSSL_1_1_1-pre1~2455 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=68a55f3b451060c747986aeffa322d32c770dd62;p=oweals%2Fopenssl.git Because our test sid file contains EC, don't try it when configured no-ec Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2564) --- diff --git a/test/recipes/25-test_sid.t b/test/recipes/25-test_sid.t index b13cb5c23a..a34f4b09e3 100644 --- a/test/recipes/25-test_sid.t +++ b/test/recipes/25-test_sid.t @@ -15,6 +15,9 @@ use OpenSSL::Test qw/:DEFAULT srctop_file/; setup("test_sid"); +plan skip_all => 'test_sid needs EC to run' + if disabled('ec'); + plan tests => 2; require_ok(srctop_file('test','recipes','tconversion.pl'));