diff options
Diffstat (limited to 't/lib/io_taint.t')
-rwxr-xr-x | t/lib/io_taint.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/io_taint.t b/t/lib/io_taint.t index 19afa2fea4..c98d70151f 100755 --- a/t/lib/io_taint.t +++ b/t/lib/io_taint.t @@ -29,7 +29,7 @@ $x->close; $x = new IO::File "< ./__taint__$$" || die("Cannot open ./__taint__$$\n"); chop($unsafe = <$x>); eval { kill 0 * $unsafe }; -print "not " if $^O ne 'MSWin32' and ($@ !~ /^Insecure/o); +print "not " if ((($^O ne 'MSWin32') && ($^O ne 'NetWare')) and ($@ !~ /^Insecure/o)); print "ok 1\n"; $x->close; |