diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-09 02:35:43 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-09 02:35:43 +0000 |
commit | fe983fe5a432b4ae3492a7da564f07983f013e26 (patch) | |
tree | b9bd9c5d3056201d91db1819c806df85999af926 /t | |
parent | c764b42b39aeaa1d50d18e4afb4455d908265700 (diff) | |
download | perl-fe983fe5a432b4ae3492a7da564f07983f013e26.tar.gz |
Not having Safe shouldn't result in test failing TEST harness.
Diffstat (limited to 't')
-rw-r--r-- | t/lib/safe.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/safe.t b/t/lib/safe.t index 72c5bf86e1..c7669a05e4 100644 --- a/t/lib/safe.t +++ b/t/lib/safe.t @@ -5,7 +5,7 @@ BEGIN { @INC = '../lib'; require Config; import Config; if ($Config{'extensions'} !~ /\bSafe\b/) { - print STDERR "1..0\n"; + print "1..0\n"; exit 0; } } |