summaryrefslogtreecommitdiff
path: root/t/porting
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-04 09:44:11 -0600
committerKarl Williamson <khw@cpan.org>2022-05-04 11:33:00 -0600
commit226f21e43dd49852c362afaf68e64b404b3f3341 (patch)
tree0d31819bedceda50173adcdbfa51874515d963dd /t/porting
parentc93586c204c48ef3bd1eeea88add365b213ac181 (diff)
downloadperl-226f21e43dd49852c362afaf68e64b404b3f3341.tar.gz
podcheck.t: Set $| to 1
This causes the output to be flushed immediately. Without this, some options that tried to tell you that the operation would take a while to complete would not have that message come out until it had in fact completed. The message should be displayed immediately.
Diffstat (limited to 't/porting')
-rw-r--r--t/porting/podcheck.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/porting/podcheck.t b/t/porting/podcheck.t
index 9842eb21aa..90dc0ceab3 100644
--- a/t/porting/podcheck.t
+++ b/t/porting/podcheck.t
@@ -21,6 +21,8 @@ use File::Find;
use File::Spec;
use Text::Tabs;
+$| = 1;
+
BEGIN {
if ( $Config{usecrosscompile} ) {
print "1..0 # Not all files are available during cross-compilation\n";