diff options
Diffstat (limited to 'lib/strict.t')
-rw-r--r-- | lib/strict.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/strict.t b/lib/strict.t index 16dcbec5eb..1176be8083 100644 --- a/lib/strict.t +++ b/lib/strict.t @@ -4,6 +4,7 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; $ENV{PERL5LIB} = '../lib'; + require './test.pl'; } $| = 1; @@ -11,9 +12,8 @@ $| = 1; my $Is_VMS = $^O eq 'VMS'; my $Is_MSWin32 = $^O eq 'MSWin32'; my $Is_NetWare = $^O eq 'NetWare'; -my $tmpfile = "tmp0000"; +my $tmpfile = tempfile(); my $i = 0 ; -1 while -e ++$tmpfile; END { if ($tmpfile) { 1 while unlink $tmpfile; } } my @prgs = () ; @@ -78,7 +78,7 @@ for (@prgs){ my $status = $?; $results =~ s/\n+$//; # allow expected output to be written as if $prog is on STDIN - $results =~ s/tmp\d+/-/g; + $results =~ s/tmp\d+[A-Z][A-Z]?/-/g; $results =~ s/\n%[A-Z]+-[SIWEF]-.*$// if $Is_VMS; # clip off DCL status msg $expected =~ s/\n+$//; $expected =~ s|(\./)?abc\.pm|:abc.pm|g if $^O eq 'MacOS'; |