Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
36
t/t5562/invoke-with-content-length.pl
Normal file
36
t/t5562/invoke-with-content-length.pl
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
use 5.008;
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
my $body_filename = $ARGV[0];
|
||||
my @command = @ARGV[1 .. $#ARGV];
|
||||
|
||||
# read data
|
||||
my $body_size = -s $body_filename;
|
||||
$ENV{"CONTENT_LENGTH"} = $body_size;
|
||||
open(my $body_fh, "<", $body_filename) or die "Cannot open $body_filename: $!";
|
||||
my $body_data;
|
||||
defined read($body_fh, $body_data, $body_size) or die "Cannot read $body_filename: $!";
|
||||
close($body_fh);
|
||||
|
||||
my $exited = 0;
|
||||
$SIG{"CHLD"} = sub {
|
||||
$exited = 1;
|
||||
};
|
||||
|
||||
# write data
|
||||
my $pid = open(my $out, "|-", @command);
|
||||
{
|
||||
# disable buffering at $out
|
||||
my $old_selected = select;
|
||||
select $out;
|
||||
$| = 1;
|
||||
select $old_selected;
|
||||
}
|
||||
print $out $body_data or die "Cannot write data: $!";
|
||||
|
||||
sleep 60; # is interrupted by SIGCHLD
|
||||
if (!$exited) {
|
||||
close($out);
|
||||
die "Command did not exit after reading whole body";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue