summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-11 08:39:06 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-11 08:39:06 +0000
commit27a116c3ca51930b3a694d2239971467aa86632c (patch)
treedc55c045f82fb5484bccf16508a1da367ed3f89a
parent6cc4041ee5e1d8fcdc23d718bf5716eeb7f01a0d (diff)
Fix for Cactus/809 from Erik Schnetter
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2399 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/sbin/Runtest.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sbin/Runtest.pl b/lib/sbin/Runtest.pl
index 3df906ca..283b5c1d 100644
--- a/lib/sbin/Runtest.pl
+++ b/lib/sbin/Runtest.pl
@@ -427,7 +427,9 @@ sub runtest
}
# clear out test directory
- chdir ("$tsttop${sep}$tp");
+ chdir ("$tsttop");
+ mkdir ($tp,0755);
+ chdir ("$tp");
opendir (DIR, ".");
unlink (grep (/.+\..+/, readdir (DIR)));
closedir (DIR);