[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Tue Feb 23 20:16:57 UTC 2016
The branch master has been updated
via e9fd82f624b158eb782da6a49725bb219247cb8c (commit)
from 14577312211e25024ffd90bbded44b021877fc59 (commit)
- Log -----------------------------------------------------------------
commit e9fd82f624b158eb782da6a49725bb219247cb8c
Author: Andy Polyakov <appro at openssl.org>
Date: Sun Feb 21 21:54:30 2016 +0100
test/recipes/80-test_ca.t: remove_tree->rmtree to make it work with Perl 5.10.
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
test/recipes/80-test_ca.t | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/test/recipes/80-test_ca.t b/test/recipes/80-test_ca.t
index 97e44c8..017c3db 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";
More information about the openssl-commits
mailing list