blob: 9790ff0f8ce164987a4a58cbcc1d6d939750f036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!./perl
# $RCSfile: fork.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:53 $
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require Config; import Config;
unless ($Config{'d_fork'}) {
print "1..0\n";
exit 0;
}
}
$| = 1;
print "1..2\n";
if ($cid = fork) {
sleep 2;
if ($result = (kill 9, $cid)) {print "ok 2\n";} else {print "not ok 2 $result\n";}
}
else {
$| = 1;
print "ok 1\n";
sleep 10;
}
|