From: Jarkko Hietaniemi Date: Mon, 30 Apr 2001 10:49:40 +0000 (+0000) Subject: Reintroduce #9889 to unbuffer the stderr/stdout on stdio configs. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=35dcc76e92e9d0d2ee72780d700d8645acd7cae8;p=p5sagit%2Fp5-mst-13.2.git Reintroduce #9889 to unbuffer the stderr/stdout on stdio configs. p4raw-id: //depot/perl@9908 --- diff --git a/t/lib/selfstubber.t b/t/lib/selfstubber.t index fd0cf06..d338489 100644 --- a/t/lib/selfstubber.t +++ b/t/lib/selfstubber.t @@ -10,6 +10,10 @@ use Devel::SelfStubber; my $runperl = "$^X \"-I../lib\""; +# ensure correct output ordering for system() calls + +select STDERR; $| = 1; select STDOUT; $| = 1; + print "1..12\n"; my @cleanup;