summaryrefslogtreecommitdiff
path: root/t/uni/overload.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2006-05-13 14:27:56 +0300
committerNicholas Clark <nick@ccl4.org>2006-05-13 11:26:04 +0000
commitbce8aa3768033adc380fd1922948e7193277c81f (patch)
tree88c87bce9effd72aa50fad4a7a5b9501c268808d /t/uni/overload.t
parent0e84aef4242ec032e57136ee96a4283b6b8d1b1d (diff)
downloadperl-bce8aa3768033adc380fd1922948e7193277c81f.tar.gz
t/uni/overload.t
Message-ID: <4465988C.9080407@gmail.com> Date: Sat, 13 May 2006 11:27:56 +0300 p4raw-id: //depot/perl@28187
Diffstat (limited to 't/uni/overload.t')
-rw-r--r--t/uni/overload.t50
1 files changed, 26 insertions, 24 deletions
diff --git a/t/uni/overload.t b/t/uni/overload.t
index 68a65e8df3..9ef4e74feb 100644
--- a/t/uni/overload.t
+++ b/t/uni/overload.t
@@ -48,46 +48,46 @@ foreach my $t ("ASCII", "B\366se") {
my $u = UTF8Toggle->new("\311");
my $lc = lc $u;
is (length $lc, 1);
-is ($lc, "\311", "E accute -> e accute");
+is ($lc, "\311", "E acute -> e acute");
$lc = lc $u;
is (length $lc, 1);
-is ($lc, "\351", "E accute -> e accute");
+is ($lc, "\351", "E acute -> e acute");
$lc = lc $u;
is (length $lc, 1);
-is ($lc, "\311", "E accute -> e accute");
+is ($lc, "\311", "E acute -> e acute");
$u = UTF8Toggle->new("\351");
my $uc = uc $u;
is (length $uc, 1);
-is ($uc, "\351", "e accute -> E accute");
+is ($uc, "\351", "e acute -> E acute");
$uc = uc $u;
is (length $uc, 1);
-is ($uc, "\311", "e accute -> E accute");
+is ($uc, "\311", "e acute -> E acute");
$uc = uc $u;
is (length $uc, 1);
-is ($uc, "\351", "e accute -> E accute");
+is ($uc, "\351", "e acute -> E acute");
$u = UTF8Toggle->new("\311");
$lc = lcfirst $u;
is (length $lc, 1);
-is ($lc, "\311", "E accute -> e accute");
+is ($lc, "\311", "E acute -> e acute");
$lc = lcfirst $u;
is (length $lc, 1);
-is ($lc, "\351", "E accute -> e accute");
+is ($lc, "\351", "E acute -> e acute");
$lc = lcfirst $u;
is (length $lc, 1);
-is ($lc, "\311", "E accute -> e accute");
+is ($lc, "\311", "E acute -> e acute");
$u = UTF8Toggle->new("\351");
$uc = ucfirst $u;
is (length $uc, 1);
-is ($uc, "\351", "e accute -> E accute");
+is ($uc, "\351", "e acute -> E acute");
$uc = ucfirst $u;
is (length $uc, 1);
-is ($uc, "\311", "e accute -> E accute");
+is ($uc, "\311", "e acute -> E acute");
$uc = ucfirst $u;
is (length $uc, 1);
-is ($uc, "\351", "e accute -> E accute");
+is ($uc, "\351", "e acute -> E acute");
my $have_setlocale = 0;
eval {
@@ -101,51 +101,53 @@ 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') {
+ skip "$^O has broken en_GB.ISO8859-1 locale", 24;
} else {
use locale;
my $u = UTF8Toggle->new("\311");
my $lc = lc $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$lc = lc $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$lc = lc $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$u = UTF8Toggle->new("\351");
my $uc = uc $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
$uc = uc $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
$uc = uc $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
$u = UTF8Toggle->new("\311");
$lc = lcfirst $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$lc = lcfirst $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$lc = lcfirst $u;
is (length $lc, 1);
- is ($lc, "\351", "E accute -> e accute");
+ is ($lc, "\351", "E acute -> e acute");
$u = UTF8Toggle->new("\351");
$uc = ucfirst $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
$uc = ucfirst $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
$uc = ucfirst $u;
is (length $uc, 1);
- is ($uc, "\311", "e accute -> E accute");
+ is ($uc, "\311", "e acute -> E acute");
}
}