summaryrefslogtreecommitdiff
path: root/t/io/pipe.t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-20 21:06:01 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-20 21:06:01 +0000
commitac230105039fe26ba2847b01a7a9b685a00d2be0 (patch)
treeb1101bcd39066103e0a1b8757ab9704dbb9f0c3e /t/io/pipe.t
parent13babf5cc224fc84f39c21258d24753e24517db3 (diff)
downloadperl-ac230105039fe26ba2847b01a7a9b685a00d2be0.tar.gz
more sleep needed from slow systems (from Peter Haworth)
p4raw-id: //depot/perl@5841
Diffstat (limited to 't/io/pipe.t')
-rwxr-xr-xt/io/pipe.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t
index 997c6bf5cc..4559624cca 100755
--- a/t/io/pipe.t
+++ b/t/io/pipe.t
@@ -98,7 +98,7 @@ if ($Config{d_sfio} || $^O eq 'machten' || $^O eq 'beos' || $^O eq 'posix-bc') {
else {
local $SIG{PIPE} = 'IGNORE';
open NIL, '|true' or die "open failed: $!";
- sleep 4;
+ sleep 5;
print NIL 'foo' or die "print failed: $!";
if (close NIL) {
print "not ok 9\n";