diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-29 08:00:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-29 08:00:48 +0000 |
commit | 0dfc8e26aed087a9a86fe8dfa45fbe33997b9602 (patch) | |
tree | 348789252ee1392b75c8cb4c3766ce3dc3af8ab8 /t/io/pipe.t | |
parent | 694468e388362429e0ea71cc051b563c183029a1 (diff) | |
download | perl-0dfc8e26aed087a9a86fe8dfa45fbe33997b9602.tar.gz |
increase sleep to compensate for slow cpu (from Peter Haworth
<pmh@edison.ioppublishing.com>)
p4raw-id: //depot/perl@5348
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 ae890c0402..997c6bf5cc 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"; |