summaryrefslogtreecommitdiff
path: root/t/cmd/mod.t
diff options
context:
space:
mode:
Diffstat (limited to 't/cmd/mod.t')
-rw-r--r--t/cmd/mod.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/cmd/mod.t b/t/cmd/mod.t
index 07617f55b0..d3048e7920 100644
--- a/t/cmd/mod.t
+++ b/t/cmd/mod.t
@@ -32,10 +32,11 @@ if (join(' ',@y) eq '0 2 4 6 8 10 12 14 16 18 20') {
print "not ok 7 @y\n";
}
+# Well this is fragile...
open(foo,'./TEST') || open(foo,'TEST') || open(foo,'t/TEST');
$x = 0;
$x++ while <foo>;
-print $x > 50 && $x < 1000 ? "ok 8\n" : "not ok 8\n";
+print $x > 50 && $x < 2000 ? "ok 8\n" : "not ok 8\n";
$x = -0.5;
print "not " if scalar($x) < 0 and $x >= 0;