From: Richard Levitte Date: Thu, 2 Mar 2017 17:26:26 +0000 (+0100) Subject: Fix the skip numbers in 80-test_ca.t X-Git-Tag: OpenSSL_1_1_1-pre1~2179 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=a4c5f8593c1451aa40c814365d3a8ce54de92bd2 Fix the skip numbers in 80-test_ca.t Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2827) --- diff --git a/test/recipes/80-test_ca.t b/test/recipes/80-test_ca.t index e9ff318ff3..19567a1f32 100644 --- a/test/recipes/80-test_ca.t +++ b/test/recipes/80-test_ca.t @@ -25,17 +25,17 @@ rmtree("demoCA", { safe => 0 }); plan tests => 5; SKIP: { $ENV{OPENSSL_CONFIG} = '-config "'.srctop_file("test", "CAss.cnf").'"'; - skip "failed creating CA structure", 3 + skip "failed creating CA structure", 4 if !ok(run(perlapp(["CA.pl","-newca"], stdin => undef)), 'creating CA structure'); $ENV{OPENSSL_CONFIG} = '-config "'.srctop_file("test", "Uss.cnf").'"'; - skip "failed creating new certificate request", 2 + skip "failed creating new certificate request", 3 if !ok(run(perlapp(["CA.pl","-newreq"])), 'creating certificate request'); $ENV{OPENSSL_CONFIG} = '-config "'.$std_openssl_cnf.'"'; - skip "failed to sign certificate request", 1 + skip "failed to sign certificate request", 2 if !is(yes(cmdstr(perlapp(["CA.pl", "-sign"]))), 0, 'signing certificate request');