blob: 225d04b46af402b7f988135f2582ec92e93bb9b6 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#!./perl
BEGIN {
@INC = '../lib';
require Config; import Config;
if ($Config{'extensions'} !~ /\bIO\b/ && $^O ne 'VMS') {
print "1..0\n";
exit 0;
}
}
use IO::Pipe;
$| = 1;
print "1..6\n";
$pipe = new IO::Pipe;
$pid = fork();
if($pid)
{
$pipe->writer;
print $pipe "Xk 1\n";
print $pipe "oY 2\n";
$pipe->close;
wait;
}
elsif(defined $pid)
{
$pipe->reader;
$stdin = bless \*STDIN, "IO::Handle";
$stdin->fdopen($pipe,"r");
exec 'tr', 'YX', 'ko';
}
else
{
die;
}
$pipe = new IO::Pipe;
$pid = fork();
if($pid)
{
$pipe->reader;
while(<$pipe>) {
s/^not //;
print;
}
$pipe->close;
wait;
}
elsif(defined $pid)
{
$pipe->writer;
$stdout = bless \*STDOUT, "IO::Handle";
$stdout->fdopen($pipe,"w");
print STDOUT "not ok 3\n";
exec 'echo', 'not ok 4';
}
else
{
die;
}
$pipe = new IO::Pipe;
$pipe->writer;
$SIG{'PIPE'} = 'broken_pipe';
sub broken_pipe {
print "ok 5\n";
}
print $pipe "not ok 5\n";
$pipe->close;
print "ok 6\n";
|