This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Autoflush in tests as appropriate
authorMike Guy <mjtg@cam.ac.uk>
Tue, 1 May 2001 20:05:31 +0000 (21:05 +0100)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 1 May 2001 18:26:54 +0000 (18:26 +0000)
Message-Id: <E14ufSl-0007gS-00@libra.cus.cam.ac.uk>

p4raw-id: //depot/perl@9932

t/lib/syslfs.t
t/op/die_exit.t
t/op/lex_assign.t
t/op/lfs.t
t/op/taint.t

index 2bdb69d..6a5d9b7 100644 (file)
@@ -16,6 +16,8 @@ BEGIN {
 
 use strict;
 
+$| = 1;
+
 our @s;
 our $fail;
 
index a389946..f758f9c 100755 (executable)
@@ -15,6 +15,8 @@ if ($^O eq 'mpeix') {
     exit 0;
 }
 
+$| = 1;
+
 my $perl = -e '../perl' ? '../perl' : -e './perl' ? './perl' : 'perl';
 
 use strict;
index d761f73..fb9fe4e 100755 (executable)
@@ -5,6 +5,7 @@ BEGIN {
     @INC = '../lib';
 }
 
+$| = 1;
 umask 0;
 $xref = \ "";
 $runme = ($^O eq 'VMS' ? 'MCR ' : '') . $^X;
index 0a1c399..44a92c4 100644 (file)
@@ -54,6 +54,8 @@ EOM
     print "1..0 # Skip: @_\n" if @_;
 }
 
+$| = 1;
+
 print "# checking whether we have sparse files...\n";
 
 # Known have-nots.
index 2958a37..8ff566e 100755 (executable)
@@ -15,6 +15,8 @@ BEGIN {
 use strict;
 use Config;
 
+$| = 1;
+
 # We do not want the whole taint.t to fail
 # just because Errno possibly failing.
 eval { require Errno; import Errno };