FAKE typeglobs seriously busted (with patch)
[p5sagit/p5-mst-13.2.git] / t / op / fork.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: fork.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:53 $
8d063cd8 4
5$| = 1;
6print "1..2\n";
7
8if ($cid = fork) {
9 sleep 2;
10 if ($result = (kill 9, $cid)) {print "ok 2\n";} else {print "not ok 2 $result\n";}
11}
12else {
13 $| = 1;
14 print "ok 1\n";
15 sleep 10;
16}