summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-03-02 18:26:26 +0100
committerRichard Levitte <levitte@openssl.org>2017-03-02 18:26:26 +0100
commita4c5f8593c1451aa40c814365d3a8ce54de92bd2 (patch)
tree4fb9cd1be358f1b9ed2e1bc781a1336b4331cf0e
parentb6611753a6d9bef6a8c16850a9eb9215d8a84fac (diff)
Fix the skip numbers in 80-test_ca.t
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2827)
-rw-r--r--test/recipes/80-test_ca.t6
1 files changed, 3 insertions, 3 deletions
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');