diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-08 18:25:14 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-11-08 18:25:14 +0000 |
commit | 06b2af23355fc42815af71c20b189a3727d5c00e (patch) | |
tree | 20e0c99b4f754462e1b6fa8c3dc0195a4b1b96a5 /t | |
parent | a528dad0140a72a05d9c18ae004dd8da0b4353b6 (diff) | |
download | perl-06b2af23355fc42815af71c20b189a3727d5c00e.tar.gz |
Do not test UTF-8 locales since that the tests would require
polymorphic regexen.
p4raw-id: //depot/perl@7610
Diffstat (limited to 't')
-rwxr-xr-x | t/pragma/locale.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/pragma/locale.t b/t/pragma/locale.t index 42c6909b6b..f8f4840bda 100755 --- a/t/pragma/locale.t +++ b/t/pragma/locale.t @@ -401,6 +401,9 @@ if (-x "/usr/bin/locale" && open(LOCALES, "/usr/bin/locale -a|")) { setlocale(LC_ALL, "C"); +# UTF-8 and locales simply do not work yet. --jhi +@Locale = grep {!/utf-?8/i} @Locale; + @Locale = sort @Locale; debug "# Locales = @Locale\n"; |