X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop.sleep;h=99933006b95ebb9c916fbc9b4c12780f5d9c2f19;hb=63f2c1e106a2635d888c6b582f4c59b5c0ecc7ee;hp=28d034ca7665cbe2c0efb48eb2c2e84b353644a1;hpb=79a0689e17f959bdb246dc37bbbbfeba4c2b3b56;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op.sleep b/t/op.sleep index 28d034c..9993300 100644 --- a/t/op.sleep +++ b/t/op.sleep @@ -1,8 +1,8 @@ #!./perl -# $Header: op.sleep,v 3.0 89/10/18 15:31:15 lwall Locked $ +# $Header: op.sleep,v 3.0.1.1 90/03/14 12:31:39 lwall Locked $ print "1..1\n"; $x = sleep 2; -if ($x == 2) {print "ok 1\n";} else {print "not ok 1\n";} +if ($x >= 2 && $x <= 10) {print "ok 1\n";} else {print "not ok 1 $x\n";}