summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-15 13:47:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-15 13:47:40 +0000
commitb97a373db867c364a61b01c76249d062b3b95526 (patch)
treeaf96fe79d97713a473154e61716ee2b9a97b1cc1 /t
parent94b7da0e7445ac6f71b6c28e07a5f8d245133222 (diff)
downloadperl-b97a373db867c364a61b01c76249d062b3b95526.tar.gz
Make fresh_perl skip the embedded UTF-8 tests on EBCDIC.
p4raw-id: //depot/perl@16610
Diffstat (limited to 't')
-rw-r--r--t/run/fresh_perl.t11
1 files changed, 10 insertions, 1 deletions
diff --git a/t/run/fresh_perl.t b/t/run/fresh_perl.t
index d49cddc54d..acc595f50d 100644
--- a/t/run/fresh_perl.t
+++ b/t/run/fresh_perl.t
@@ -52,6 +52,13 @@ foreach my $prog (@prgs) {
my($prog,$expected) = split(/\nEXPECT\n/, $raw_prog);
+ if ($prog =~ /^\# SKIP: (.+)/m) {
+ if (eval $1) {
+ ok(1, "Skip: $1");
+ next;
+ }
+ }
+
$expected =~ s/\n+$//;
fresh_perl_is($prog, $expected, { switches => [$switch] }, $name);
@@ -789,6 +796,7 @@ $test = Foo->new(); # must be package var
EXPECT
ok
######## example from Camel 5, ch. 15, pp.406 (with my)
+# SKIP: ord "A" == 193 # EBCDIC
use strict;
use utf8;
my $人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
@@ -797,6 +805,7 @@ print $人, "\n";
EXPECT
3
######## example from Camel 5, ch. 15, pp.406 (with our)
+# SKIP: ord "A" == 193 # EBCDIC
use strict;
use utf8;
our $人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
@@ -805,6 +814,7 @@ print $人, "\n";
EXPECT
3
######## example from Camel 5, ch. 15, pp.406 (with package vars)
+# SKIP: ord "A" == 193 # EBCDIC
use utf8;
$人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
$人++; # a child is born
@@ -817,4 +827,3 @@ tie FH, 'main';
EXPECT
Can't modify constant item in tie at - line 2, near "'main';"
Execution of - aborted due to compilation errors.
-