aboutsummaryrefslogtreecommitdiff
path: root/test/recipes/80-test_ca.t
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-25 15:03:08 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-27 17:41:32 +0200
commitac1a998d04a66e69ad36141a0254cf8baf3aa5d0 (patch)
tree3d1187c8e4d909a9856f520d103ad20fe5684675 /test/recipes/80-test_ca.t
parent04b7805a8686d33186ca9e0571355e7fa2ef2d86 (diff)
downloadopenssl-ac1a998d04a66e69ad36141a0254cf8baf3aa5d0.zip
openssl-ac1a998d04a66e69ad36141a0254cf8baf3aa5d0.tar.gz
openssl-ac1a998d04a66e69ad36141a0254cf8baf3aa5d0.tar.bz2
make sure to put quotes around -config argument, in case of spaces
RT#4486 Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/recipes/80-test_ca.t')
-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 8e01d5f..cd42687 100644
--- a/test/recipes/80-test_ca.t
+++ b/test/recipes/80-test_ca.t
@@ -24,17 +24,17 @@ rmtree("demoCA", { safe => 0 });
plan tests => 4;
SKIP: {
- $ENV{OPENSSL_CONFIG} = "-config ".srctop_file("test", "CAss.cnf");
+ $ENV{OPENSSL_CONFIG} = '-config "'.srctop_file("test", "CAss.cnf").'"';
skip "failed creating CA structure", 3
if !ok(run(perlapp(["CA.pl","-newca"], stdin => undef)),
'creating CA structure');
- $ENV{OPENSSL_CONFIG} = "-config ".srctop_file("test", "Uss.cnf");
+ $ENV{OPENSSL_CONFIG} = '-config "'.srctop_file("test", "Uss.cnf").'"';
skip "failed creating new certificate request", 2
if !ok(run(perlapp(["CA.pl","-newreq"])),
'creating CA structure');
- $ENV{OPENSSL_CONFIG} = "-config ".$std_openssl_cnf;
+ $ENV{OPENSSL_CONFIG} = '-config "'.$std_openssl_cnf.'"';
skip "failed to sign certificate request", 1
if !is(yes(cmdstr(perlapp(["CA.pl", "-sign"]))), 0,
'signing certificate request');