Change 32674 by [EMAIL PROTECTED] on 2007/12/20 18:48:09
The test needs to be on defined $ENV{PERL_UNICODE} because during
testing being set to an empty string has meaning.
Affected files ...
... //depot/perl/lib/Test/Harness/t/unicode.t#3 edit
Differences ...
==== //depot/perl/lib/Test/Harness/t/unicode.t#3 (text) ====
Index: perl/lib/Test/Harness/t/unicode.t
--- perl/lib/Test/Harness/t/unicode.t#2~32673~ 2007-12-20 10:25:46.000000000
-0800
+++ perl/lib/Test/Harness/t/unicode.t 2007-12-20 10:48:09.000000000 -0800
@@ -13,7 +13,7 @@
unless $] > 5.008;
plan skip_all => "PERL_UNICODE set"
- if $ENV{PERL_UNICODE};
+ if defined $ENV{PERL_UNICODE};
eval "use File::Temp";
plan skip_all => "File::Temp unavailable"
End of Patch.