From: Gurusamy Sarathy Date: Tue, 29 Feb 2000 08:00:48 +0000 (+0000) Subject: increase sleep to compensate for slow cpu (from Peter Haworth X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0dfc8e26aed087a9a86fe8dfa45fbe33997b9602;p=p5sagit%2Fp5-mst-13.2.git increase sleep to compensate for slow cpu (from Peter Haworth ) p4raw-id: //depot/perl@5348 --- diff --git a/t/io/pipe.t b/t/io/pipe.t index ae890c0..997c6bf 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 2; + sleep 4; print NIL 'foo' or die "print failed: $!"; if (close NIL) { print "not ok 9\n";