test/recipes/80-test_ca.t: remove_tree->rmtree to make it work with Perl 5.10.
authorAndy Polyakov <appro@openssl.org>
Sun, 21 Feb 2016 20:54:30 +0000 (21:54 +0100)
committerAndy Polyakov <appro@openssl.org>
Tue, 23 Feb 2016 20:16:30 +0000 (21:16 +0100)
Reviewed-by: Richard Levitte <levitte@openssl.org>
test/recipes/80-test_ca.t

index 97e44c8d995490d8e44bf388c71c0121dcaa3419..017c3db77f43fe54537efbad071e760b86faf7b2 100644 (file)
@@ -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";