diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-20 21:06:01 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-20 21:06:01 +0000 |
commit | ac230105039fe26ba2847b01a7a9b685a00d2be0 (patch) | |
tree | b1101bcd39066103e0a1b8757ab9704dbb9f0c3e /t/io/pipe.t | |
parent | 13babf5cc224fc84f39c21258d24753e24517db3 (diff) | |
download | perl-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-x | t/io/pipe.t | 2 |
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"; |