summaryrefslogtreecommitdiff
path: root/t/TEST
diff options
context:
space:
mode:
Diffstat (limited to 't/TEST')
-rwxr-xr-x[-rw-r--r--]t/TEST4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/TEST b/t/TEST
index 451bbe6be6..22135c68dc 100644..100755
--- a/t/TEST
+++ b/t/TEST
@@ -23,9 +23,11 @@ while (<config>) {
}
$bad = 0;
while ($test = shift) {
+ next if $test =~ m/,v$/;
+ next if $test =~ m/~$/;
print "$test...";
if ($sharpbang) {
- open(results,"$test|") || (print "can't run.\n");
+ open(results,"./$test|") || (print "can't run.\n");
} else {
open(script,"$test") || die "Can't run $test";
$_ = <script>;