xref: /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/sleep.t (revision 0:68f95e015346)
1*0Sstevel@tonic-gate#!./perl
2*0Sstevel@tonic-gate
3*0Sstevel@tonic-gate# $RCSfile: sleep.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:23 $
4*0Sstevel@tonic-gate
5*0Sstevel@tonic-gateprint "1..1\n";
6*0Sstevel@tonic-gate
7*0Sstevel@tonic-gate$x = sleep 3;
8*0Sstevel@tonic-gateif ($x >= 2 && $x <= 10) {print "ok 1\n";} else {print "not ok 1 $x\n";}
9