summaryrefslogtreecommitdiff
path: root/runtest.pl.in
diff options
context:
space:
mode:
Diffstat (limited to 'runtest.pl.in')
-rwxr-xr-xruntest.pl.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtest.pl.in b/runtest.pl.in
index 5b8b4bbe..775b13ac 100755
--- a/runtest.pl.in
+++ b/runtest.pl.in
@@ -129,7 +129,7 @@ sub runtest
if(-d $test_dst_dir)
{
- unshift @commands, "rmdir /s /q $test_dst_dir";
+ unshift @commands, "rd /s /q $test_dst_dir";
}
foreach my $command (@commands)
@@ -159,7 +159,7 @@ sub runtest
{
if(-d "$test_dst_dir\\$1")
{
- my $cmd = "rmdir /s/q $test_dst_dir\\$1";
+ my $cmd = "rd /s/q $test_dst_dir\\$1";
my $status = system($cmd);
$status == 0 or die "$cmd: failed with ".
"status $status";