8 # Run @$argv in the background with stdout redirected to $out.
10 my ($argv, $out) = @_;
12 if (not defined $pid) {
15 open STDOUT
, ">&", $out;
17 exec(@
$argv) or die "cannot exec '$argv->[0]': $!"
22 # Wait for $pid to finish.
24 # Simplified from wait_or_whine() in run-command.c.
27 my $waiting = waitpid($pid, 0);
29 die "waitpid failed: $!";
32 warn "died of signal $code";
42 # Note: the real sendfile() cannot read from a terminal.
44 # It is unspecified by POSIX whether reads
45 # from a disconnected terminal will return
46 # EIO (as in AIX 4.x, IRIX, and Linux) or
47 # end-of-file. Either is fine.
48 copy
($in, $out, 4096) or $!{EIO
} or die "cannot copy from child: $!";
52 die "usage: test-terminal program args";
54 my $master = new IO
::Pty
;
55 my $slave = $master->slave;
56 my $pid = start_child
(\
@ARGV, $slave);
58 xsendfile
(\
*STDOUT
, $master);
59 exit(finish_child
($pid));