summaryrefslogtreecommitdiff
path: root/t/pragma/strict.t
diff options
context:
space:
mode:
Diffstat (limited to 't/pragma/strict.t')
-rwxr-xr-xt/pragma/strict.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/pragma/strict.t b/t/pragma/strict.t
index bbfb8ab1f1..8b9083f4fc 100755
--- a/t/pragma/strict.t
+++ b/t/pragma/strict.t
@@ -10,6 +10,7 @@ $| = 1;
my $Is_VMS = $^O eq 'VMS';
my $Is_MSWin32 = $^O eq 'MSWin32';
+my $Is_NetWare = $^O eq 'NetWare';
my $tmpfile = "tmp0000";
my $i = 0 ;
1 while -f ++$tmpfile;
@@ -71,6 +72,8 @@ for (@prgs){
`.\\perl -I../lib $switch $tmpfile 2>&1` :
$^O eq 'MacOS' ?
`$^X -I::lib $switch $tmpfile` :
+ $^O eq 'NetWare' ?
+ `perl -I../lib $switch $tmpfile 2>&1` :
`./perl $switch $tmpfile 2>&1`;
my $status = $?;
$results =~ s/\n+$//;