make sure to put quotes around -config argument, in case of spaces
authorRichard Levitte <levitte@openssl.org>
Wed, 25 May 2016 13:03:08 +0000 (15:03 +0200)
committerRichard Levitte <levitte@openssl.org>
Fri, 27 May 2016 15:41:32 +0000 (17:41 +0200)
RT#4486

Reviewed-by: Matt Caswell <matt@openssl.org>
test/recipes/80-test_ca.t

index 8e01d5f2a8fc56a5c8a2b312f4d89a480525de41..cd426871978b55e660c46ffb52963b9c8cbac350 100644 (file)
@@ -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');