perl 5.002_01: t/cmd/mod.t
Perl 5 Porters [Fri, 1 Mar 1996 03:32:41 +0000 (03:32 +0000)]
Try to open TEST with explicit directory first, so test doesn't
fail if logical name TEST points to another file.

t/cmd/mod.t

index e1327ed..9d9170f 100755 (executable)
@@ -27,7 +27,7 @@ $x = 15;
 $x = 10 while $x < 10;
 if ($x == 15) {print "ok 6\n";} else {print "not ok 6\n";}
 
-open(foo,'TEST') || open(foo,'t/TEST');
+open(foo,'./TEST') || open(foo,'TEST') || open(foo,'t/TEST');
 $x = 0;
 $x++ while <foo>;
 print $x > 50 && $x < 1000 ? "ok 7\n" : "not ok 7\n";