diff options
author | Abe Timmerman <abe@ztreet.demon.nl> | 2007-09-23 03:11:50 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-09-23 08:59:52 +0000 |
commit | 2a6abc0ef9cf5fdfbc698e8c38a9360f018ec7a3 (patch) | |
tree | 81c75929258ad86ff5b12490da9d04f94c9b59e8 /t | |
parent | ac09da3b9065d6e75850e3772d9b883653c64a70 (diff) | |
download | perl-2a6abc0ef9cf5fdfbc698e8c38a9360f018ec7a3.tar.gz |
netbsd's setlocale () doesn't support LC_COLLATE and LC_NUMERIC
Subject: Re: Smoke [5.10.0] 31938 FAIL(F) netbsd 3.1 (i386/1 cpu)
Message-ID: <46F5A136.8080000@ztreet.demon.nl>
p4raw-id: //depot/perl@31942
Diffstat (limited to 't')
-rw-r--r-- | t/uni/overload.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/uni/overload.t b/t/uni/overload.t index e4f4e132ea..a94d453c96 100644 --- a/t/uni/overload.t +++ b/t/uni/overload.t @@ -101,7 +101,7 @@ SKIP: { skip "No setlocale", 24; } elsif (!setlocale(&POSIX::LC_ALL, "en_GB.ISO8859-1")) { skip "Could not setlocale to en_GB.ISO8859-1", 24; - } elsif ($^O eq 'dec_osf' || $^O eq 'VMS') { + } elsif ($^O eq 'dec_osf' || $^O eq 'VMS' || $^O eq 'netbsd') { skip "$^O has broken en_GB.ISO8859-1 locale", 24; } else { use locale; |