diff options
author | Craig A. Berry <craigberry@mac.com> | 2006-07-14 18:18:18 +0000 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2006-07-14 18:18:18 +0000 |
commit | c1289dd7d5e8d409a94f43524726bbeba2f888b0 (patch) | |
tree | c36c5f6096ef20cc3276709e89f40d53f86ad1db /t/uni | |
parent | 525488d5ffae78b6a8d844321ca081857707856a (diff) | |
download | perl-c1289dd7d5e8d409a94f43524726bbeba2f888b0.tar.gz |
overload.t has same locale problem with VMS that it has with dec_osf
p4raw-id: //depot/perl@28575
Diffstat (limited to 't/uni')
-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 9ef4e74feb..042a45dc56 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') { + } elsif ($^O eq 'dec_osf' || $^O eq 'VMS') { skip "$^O has broken en_GB.ISO8859-1 locale", 24; } else { use locale; |