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

# $Header: op.sleep,v 2.0 88/06/05 00:14:35 root Exp $

print "1..1\n";

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