]> git.ipfire.org Git - thirdparty/git.git/blob - t/t7006/test-terminal.perl
perl: bump the required Perl version to 5.8 from 5.6.[21]
[thirdparty/git.git] / t / t7006 / test-terminal.perl
1 #!/usr/bin/perl
2 use 5.008;
3 use strict;
4 use warnings;
5 use IO::Pty;
6 use File::Copy;
7
8 # Run @$argv in the background with stdout redirected to $out.
9 sub start_child {
10 my ($argv, $out) = @_;
11 my $pid = fork;
12 if (not defined $pid) {
13 die "fork failed: $!"
14 } elsif ($pid == 0) {
15 open STDOUT, ">&", $out;
16 close $out;
17 exec(@$argv) or die "cannot exec '$argv->[0]': $!"
18 }
19 return $pid;
20 }
21
22 # Wait for $pid to finish.
23 sub finish_child {
24 # Simplified from wait_or_whine() in run-command.c.
25 my ($pid) = @_;
26
27 my $waiting = waitpid($pid, 0);
28 if ($waiting < 0) {
29 die "waitpid failed: $!";
30 } elsif ($? & 127) {
31 my $code = $? & 127;
32 warn "died of signal $code";
33 return $code - 128;
34 } else {
35 return $? >> 8;
36 }
37 }
38
39 sub xsendfile {
40 my ($out, $in) = @_;
41
42 # Note: the real sendfile() cannot read from a terminal.
43
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: $!";
49 }
50
51 if ($#ARGV < 1) {
52 die "usage: test-terminal program args";
53 }
54 my $master = new IO::Pty;
55 my $slave = $master->slave;
56 my $pid = start_child(\@ARGV, $slave);
57 close $slave;
58 xsendfile(\*STDOUT, $master);
59 exit(finish_child($pid));