increase sleep to compensate for slow cpu (from Peter Haworth
authorGurusamy Sarathy <gsar@cpan.org>
Tue, 29 Feb 2000 08:00:48 +0000 (08:00 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Tue, 29 Feb 2000 08:00:48 +0000 (08:00 +0000)
<pmh@edison.ioppublishing.com>)

p4raw-id: //depot/perl@5348

t/io/pipe.t

index ae890c0..997c6bf 100755 (executable)
@@ -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";