summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Test.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-03-10 21:56:14 +0000
committerKarl Berry <karl@freefriends.org>2019-03-10 21:56:14 +0000
commite0a2a718e89f9700d627f1e6a8eea8f21d2fbeb8 (patch)
tree39972f65008b0d70f306a5f976494d29411bc41e /Master/tlpkg/tlperl/lib/Test.pm
parentb206fdc77d81ed1600949062f08de5690a4bf66f (diff)
tl19 perl 5.28.1 for Windows, from Siep
git-svn-id: svn://tug.org/texlive/trunk@50322 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Test.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Test.pm9
1 files changed, 4 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/Test.pm b/Master/tlpkg/tlperl/lib/Test.pm
index ce544ffe19e..58daf281ac6 100644
--- a/Master/tlpkg/tlperl/lib/Test.pm
+++ b/Master/tlpkg/tlperl/lib/Test.pm
@@ -5,10 +5,9 @@ package Test;
use strict;
use Carp;
-use vars (qw($VERSION @ISA @EXPORT @EXPORT_OK $ntest $TestLevel), #public-ish
- qw($TESTOUT $TESTERR %Program_Lines $told_about_diff
- $ONFAIL %todo %history $planned @FAILDETAIL) #private-ish
- );
+our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, $ntest, $TestLevel); #public-is
+our ($TESTOUT, $TESTERR, %Program_Lines, $told_about_diff,
+ $ONFAIL, %todo, %history, $planned, @FAILDETAIL); #private-ish
# In case a test is run in a persistent environment.
sub _reset_globals {
@@ -20,7 +19,7 @@ sub _reset_globals {
$planned = 0;
}
-$VERSION = '1.30';
+$VERSION = '1.31';
require Exporter;
@ISA=('Exporter');