aboutsummaryrefslogtreecommitdiff
path: root/test/recipes/80-test_ca.t
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-02-21 21:54:30 +0100
committerAndy Polyakov <appro@openssl.org>2016-02-23 21:16:30 +0100
commite9fd82f624b158eb782da6a49725bb219247cb8c (patch)
treed1b35fad52c2748066479620f66b25e2f56d3b7b /test/recipes/80-test_ca.t
parent14577312211e25024ffd90bbded44b021877fc59 (diff)
downloadopenssl-e9fd82f624b158eb782da6a49725bb219247cb8c.zip
openssl-e9fd82f624b158eb782da6a49725bb219247cb8c.tar.gz
openssl-e9fd82f624b158eb782da6a49725bb219247cb8c.tar.bz2
test/recipes/80-test_ca.t: remove_tree->rmtree to make it work with Perl 5.10.
Reviewed-by: Richard Levitte <levitte@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 97e44c8..017c3db7 100644
--- a/test/recipes/80-test_ca.t
+++ b/test/recipes/80-test_ca.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use POSIX;
-use File::Path 2.00 qw/remove_tree/;
+use File::Path 2.00 qw/rmtree/;
use OpenSSL::Test qw/:DEFAULT cmdstr srctop_file/;
setup("test_ca");
@@ -13,7 +13,7 @@ $ENV{OPENSSL} = cmdstr(app(["openssl"]));
my $std_openssl_cnf =
srctop_file("apps", $^O eq "VMS" ? "openssl-vms.cnf" : "openssl.cnf");
-remove_tree("demoCA", { safe => 0 });
+rmtree("demoCA", { safe => 0 });
plan tests => 4;
SKIP: {
@@ -37,7 +37,7 @@ plan tests => 4;
}
-remove_tree("demoCA", { safe => 0 });
+rmtree("demoCA", { safe => 0 });
unlink "newcert.pem", "newreq.pem";