summaryrefslogtreecommitdiff
path: root/t/op.sleep
blob: e32e62bf1bdbffa16e1b3b0d211cacec0a10eff5 (plain)
1
2
3
4
5
6
7
8
#!./perl

# $Header: op.sleep,v 1.0 87/12/18 13:14:17 root Exp $

print "1..1\n";

$x = sleep 2;
if ($x == 2) {print "ok 1\n";} else {print "not ok 1\n";}