From: Yitzchak Scott-Thoennes Date: Thu, 17 Aug 2000 18:39:29 +0000 (-0700) Subject: Unbuffer the output. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=10d513196b28aed78894bd97133e3e9d2bf1de47;p=p5sagit%2Fp5-mst-13.2.git Unbuffer the output. Subject: Re: [ID 20000817.017] Not OK: perl v5.7.0 +SUIDMAIL +DEVEL6680 on Message-ID: p4raw-id: //depot/perl@6693 --- diff --git a/t/op/fork.t b/t/op/fork.t index beb64f9..7c2add9 100755 --- a/t/op/fork.t +++ b/t/op/fork.t @@ -375,6 +375,7 @@ EXPECT pipe_from_fork pipe_to_fork ######## +$|=1; if ($pid = fork()) { print "forked first kid\n"; print "waitpid() returned ok\n" if waitpid($pid,0) == $pid;