p4raw-id: //depot/perl@4721
Malformed UTF-8 character at - line 4.
########
# doop.c
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# Character codes differ on ebcdic machines.";
+ exit 0;
+ }
+}
use warnings 'utf8' ;
use utf8 ;
$_ = "\x80 \xff" ;
Malformed UTF-8 character at - line 4.
########
# pp.c
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# Character codes differ on ebcdic machines.";
+ exit 0;
+ }
+}
use warnings 'utf8' ;
use utf8 ;
$_ = "\x80 \xff" ;
/[[:digit:]-[:alpha:]]/: false [] range "[:digit:]-" in regexp at - line 12.
########
# regcomp.c [S_regclassutf8]
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# ebcdic regular expression ranges differ.";
+ exit 0;
+ }
+}
use utf8;
$_ = "";
use warnings 'unsafe' ;
Undefined value assigned to typeglob at - line 3.
########
# sv.c
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# ebcdic \\x characters differ.";
+ exit 0;
+ }
+}
use utf8 ;
$^W =0 ;
{
########
# toke.c
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# Ebcdic platforms have different \\x constructs.";
+ exit 0;
+ }
+}
use warnings 'utf8' ;
use utf8 ;
$_ = " \xffe " ;
Malformed UTF-8 character at - line 3.
########
# utf8.c [utf8_to_uv]
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# Ebcdic platforms have different \\x constructs.";
+ exit 0;
+ }
+}
use utf8 ;
my $a = ord "\x80" ;
{
Malformed UTF-8 character at - line 3.
########
# utf8.c [utf8_to_uv]
+BEGIN {
+ if (ord("\t") == 5) {
+ print "SKIPPED\n# Ebcdic platforms have different \\x constructs.";
+ exit 0;
+ }
+}
use utf8 ;
my $a = ord "\xf080" ;
{