summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-05-01 08:26:06 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-05-01 08:26:06 +0000
commitc8fc8fb0dd5fe8024295134e4cd63a3f63734f70 (patch)
treeb59c8aca9561602ab8e06e7ed33d463123c5c6b8 /t/io
parenta29d1a25ab4477ba560380bb2d146b6d2e44cedf (diff)
downloadperl-c8fc8fb0dd5fe8024295134e4cd63a3f63734f70.tar.gz
The solution in change #19363 was too unportable.
p4raw-link: @19363 on //depot/perl: d67aa87a1383860a50a1cda017e175d17b66c122 p4raw-id: //depot/perl@19371
Diffstat (limited to 't/io')
-rwxr-xr-xt/io/openpid.t21
1 files changed, 9 insertions, 12 deletions
diff --git a/t/io/openpid.t b/t/io/openpid.t
index 2dec677bcb..c6ed840225 100755
--- a/t/io/openpid.t
+++ b/t/io/openpid.t
@@ -25,6 +25,7 @@ $| = 1;
$SIG{PIPE} = 'IGNORE';
my $perl = which_perl();
+$perl .= qq[ "-I../lib"];
#
# commands run 4 perl programs. Two of these programs write a
@@ -33,22 +34,18 @@ my $perl = which_perl();
# the other reader reads one line, waits a few seconds and then
# exits to test the waitpid function.
#
-@cmd1 = ($perl,'-I../lib','-e',
- q{$|=1; print qq[first process\n]; sleep 300;});
-@cmd2 = ($perl,'-I../lib','-e',
- q{$|=1; print qq[second process\n]; sleep 30;});
-@cmd3 = ($perl,'-I../lib','-e',
- "print <>;"); # hangs waiting for end of STDIN
-@cmd4 = ($perl,'-I../lib','-e',
- "print scalar <>;");
+$cmd1 = qq/$perl -e "\$|=1; print qq[first process\\n]; sleep 30;"/;
+$cmd2 = qq/$perl -e "\$|=1; print qq[second process\\n]; sleep 30;"/;
+$cmd3 = qq/$perl -e "print <>;"/; # hangs waiting for end of STDIN
+$cmd4 = qq/$perl -e "print scalar <>;"/;
#warn "#$cmd1\n#$cmd2\n#$cmd3\n#$cmd4\n";
# start the processes
-ok( $pid1 = open(FH1, "-|", @cmd1), 'first process started');
-ok( $pid2 = open(FH2, "-|", @cmd2), ' second' );
-ok( $pid3 = open(FH3, "|-", @cmd3), ' third' );
-ok( $pid4 = open(FH4, "|-", @cmd4), ' fourth' );
+ok( $pid1 = open(FH1, "$cmd1 |"), 'first process started');
+ok( $pid2 = open(FH2, "$cmd2 |"), ' second' );
+ok( $pid3 = open(FH3, "| $cmd3"), ' third' );
+ok( $pid4 = open(FH4, "| $cmd4"), ' fourth' );
print "# pids were $pid1, $pid2, $pid3, $pid4\n";