From: Gurusamy Sarathy Date: Mon, 20 Mar 2000 21:06:01 +0000 (+0000) Subject: more sleep needed from slow systems (from Peter Haworth) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ac230105039fe26ba2847b01a7a9b685a00d2be0;p=p5sagit%2Fp5-mst-13.2.git more sleep needed from slow systems (from Peter Haworth) p4raw-id: //depot/perl@5841 --- diff --git a/t/io/pipe.t b/t/io/pipe.t index 997c6bf..4559624 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";