Change 11428 by gsar@moonru on 2001/07/21 04:39:34
run/runenv.t needs fflushNULL sanity (t/TEST is too dumb to detect
resulting duplicate output, but t/harness isn't)
Affected files ...
... //depot/maint-5.6/perl/t/run/runenv.t#4 edit
Differences ...
==== //depot/maint-5.6/perl/t/run/runenv.t#4 (xtext) ====
Index: perl/t/run/runenv.t
--- perl/t/run/runenv.t.~1~ Fri Jul 20 22:45:05 2001
+++ perl/t/run/runenv.t Fri Jul 20 22:45:05 2001
@@ -14,6 +14,8 @@
}
}
+$| = 1 unless $Config{fflushNULL}; # some platforms can't autoflush on fork()
+
my $STDOUT = './results-0';
my $STDERR = './results-1';
my $PERL = './perl';
End of Patch.