Commit a3518057 authored by Richard Levitte's avatar Richard Levitte
Browse files

Make sure that 80-test_ca.t finds all the config files



This recipe counted too much on being called with test/ as its current
working directory.  That's a mistake on, for example, Windows.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent eb8cd5de
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,12 +21,12 @@ remove_tree("demoCA", { safe => 0 });

plan tests => 4;
 SKIP: {
     $ENV{SSLEAY_CONFIG} = "-config CAss.cnf";
     $ENV{SSLEAY_CONFIG} = "-config ".top_file("test", "CAss.cnf");
     skip "failed creating CA structure", 3
	 if !is(system("$perl ".$CA_pl." -newca < ".devnull()." 2>&1"), 0,
		'creating CA structure');

     $ENV{SSLEAY_CONFIG} = "-config Uss.cnf";
     $ENV{SSLEAY_CONFIG} = "-config ".top_file("test", "Uss.cnf");
     skip "failed creating new certificate request", 2
	 if !is(system("$perl ".$CA_pl." -newreq 2>&1"), 0,
		'creating new certificate request');