From a351805733a2c0511c61e7fef06fe645e31a4796 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 7 Sep 2015 01:09:23 +0200 Subject: 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: Rich Salz --- test/recipes/80-test_ca.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/recipes/80-test_ca.t b/test/recipes/80-test_ca.t index b044163283..f57fb3cdb6 100644 --- a/test/recipes/80-test_ca.t +++ b/test/recipes/80-test_ca.t @@ -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'); -- cgit v1.2.3