user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH] t/run: Perl future proofing
Date: Mon, 31 Aug 2020 23:41:56 +0000	[thread overview]
Message-ID: <20200831234156.16562-1-e@80x24.org> (raw)

Bareword file handles outside of STD(IN|OUT|ERR) seem to be on
the chopping block for Perl 8.  We'll also "use v5.10.1" to
guard against future incompatibilities.
---
 t/run.perl | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/t/run.perl b/t/run.perl
index 0ba5e044..1c7bcfc3 100755
--- a/t/run.perl
+++ b/t/run.perl
@@ -11,6 +11,8 @@
 # Usage: $PERL -I lib -w t/run.perl -j4
 # Or via prove(1): prove -lvw t/run.perl :: -j4
 use strict;
+use v5.10.1;
+use IO::Handle; # ->autoflush
 use PublicInbox::TestCommon;
 use Cwd qw(getcwd);
 use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
@@ -32,10 +34,10 @@ if (($ENV{TEST_RUN_MODE} // 2) == 0) {
 }
 my @tests = scalar(@ARGV) ? @ARGV : glob('t/*.t');
 my $cwd = getcwd();
-open OLDOUT, '>&STDOUT' or die "dup STDOUT: $!";
-open OLDERR, '>&STDERR' or die "dup STDERR: $!";
-OLDOUT->autoflush(1);
-OLDERR->autoflush(1);
+open my $OLDOUT, '>&STDOUT' or die "dup STDOUT: $!";
+open my $OLDERR, '>&STDERR' or die "dup STDERR: $!";
+$OLDOUT->autoflush(1);
+$OLDERR->autoflush(1);
 
 key2sub($_) for @tests; # precache
 
@@ -53,7 +55,7 @@ if ($shuffle) {
 our $tb = Test::More->builder;
 
 sub DIE (;$) {
-	print OLDERR @_;
+	print $OLDERR @_;
 	exit(1);
 }
 
@@ -71,7 +73,7 @@ sub test_status () {
 			my @not_ok = grep(!/^(?:ok |[ \t]*#)/ms, <$fh>);
 			pop @not_ok if $not_ok[-1] =~ /^[0-9]+\.\.[0-9]+$/;
 			my $pfx = "# $log: ";
-			print OLDERR map { $pfx.$_ } @not_ok;
+			print $OLDERR map { $pfx.$_ } @not_ok;
 			seek($fh, 0, SEEK_SET) or die "seek: $!";
 
 			# show unique skip texts and the number of times
@@ -81,13 +83,13 @@ sub test_status () {
 			if (@sk) {
 				my %nr;
 				my @err = grep { !$nr{$_}++ } @sk;
-				print OLDERR "$pfx$_ ($nr{$_})\n" for @err;
+				print $OLDERR "$pfx$_ ($nr{$_})\n" for @err;
 				$skip = ' # total skipped: '.scalar(@sk);
 			}
 		} else {
-			print OLDERR "could not open: $log: $!\n";
+			print $OLDERR "could not open: $log: $!\n";
 		}
-		print OLDOUT "$status $worker_test$skip\n";
+		print $OLDOUT "$status $worker_test$skip\n";
 	}
 }
 
@@ -182,7 +184,7 @@ for (my $i = $repeat; $i != 0; $i--) {
 			push @err, "job[$j] ($?)" if $?;
 			# skip_all can exit(0), respawn if needed:
 			if (!$eof) {
-				print OLDERR "# respawning job[$j]\n";
+				print $OLDERR "# respawning job[$j]\n";
 				$start_worker->($i, $j, $rd, \@todo);
 			}
 		}
@@ -205,4 +207,4 @@ for (my $i = $repeat; $i != 0; $i--) {
 	DIE join('', map { "E: $_\n" } @err) if @err;
 }
 
-print OLDOUT "1..".($repeat * scalar(@tests))."\n" if $repeat >= 0;
+print $OLDOUT "1..".($repeat * scalar(@tests))."\n" if $repeat >= 0;

                 reply	other threads:[~2020-08-31 23:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200831234156.16562-1-e@80x24.org \
    --to=e@80x24.org \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).