diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-22 09:26:58 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-22 11:56:20 +0100 |
commit | 9fb03e618192b6b5d49274cc64422acee51fe198 (patch) | |
tree | 03041992710e692feaeceeae038220ddf47414c4 /t | |
parent | 1bb4187059cebfeb80fd44d4a65c5daa04be9ff4 (diff) | |
download | perl-9fb03e618192b6b5d49274cc64422acee51fe198.tar.gz |
Remove the "hack" that removes SVt_UTF8 in the UTF16 filter, by fixing t/TEST
Given that t/TEST already had code to add -I../lib when testing UTF-8 with
-utf8, do likewise for testing UTF-16 with -utf16.
Diffstat (limited to 't')
-rwxr-xr-x | t/TEST | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -246,7 +246,7 @@ sub _scan_test { } } - my $utf8 = $::with_utf8 ? "-I$lib -Mutf8" : ''; + my $utf8 = ($::with_utf8 || $::with_utf16) ? "-I$lib -Mutf8" : ''; my %options = ( perl => $perl, |