Skip to content

Commit a1af91d

Browse files
committed
run/fresh_perl.t: Don't skip tests on EBCDIC
These pass on EBCDIC platforms.
1 parent e8bbad6 commit a1af91d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

t/run/fresh_perl.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,6 @@ print join '', @a, "\n";
667667
EXPECT
668668
123456789
669669
######## example from Camel 5, ch. 15, pp.406 (with my)
670-
# SKIP: ord "A" == 193 # EBCDIC
671670
use strict;
672671
use utf8;
673672
my $人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
@@ -676,7 +675,6 @@ print $人, "\n";
676675
EXPECT
677676
3
678677
######## example from Camel 5, ch. 15, pp.406 (with our)
679-
# SKIP: ord "A" == 193 # EBCDIC
680678
use strict;
681679
use utf8;
682680
our $人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
@@ -685,15 +683,13 @@ print $人, "\n";
685683
EXPECT
686684
3
687685
######## example from Camel 5, ch. 15, pp.406 (with package vars)
688-
# SKIP: ord "A" == 193 # EBCDIC
689686
use utf8;
690687
$人 = 2; # 0xe4 0xba 0xba: U+4eba, "human" in CJK ideograph
691688
$人++; # a child is born
692689
print $人, "\n";
693690
EXPECT
694691
3
695692
######## example from Camel 5, ch. 15, pp.406 (with use vars)
696-
# SKIP: ord "A" == 193 # EBCDIC
697693
use strict;
698694
use utf8;
699695
use vars qw($人);

0 commit comments

Comments
 (0)