# don't make this lexical
$i = 1;
-print "1..23\n";
+
+my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0;
+my $total_tests = 23;
+if ($Is_EBCDIC) { $total_tests = 20; }
+print "1..$total_tests\n";
sub do_require {
%INC = ();
sub dofile { do "bleah.do"; };
print $x;
-# UTF-encoded things
+# UTF-encoded things - skipped on EBCDIC machines
+
+if ($Is_EBCDIC) { exit; }
+
my $utf8 = chr(0xFEFF);
$i++; do_require(qq(${utf8}print "ok $i\n"; 1;\n));
}
$| = 1;
-print "1..25\n";
+my $total_tests = 25;
+if (ord('A') == 193) { $total_tests = 24; } # EBCDIC platforms do not warn on UTF-8
+print "1..$total_tests\n";
open(F,"+>:utf8",'a');
print F chr(0x100).'£';
print "ok 5\n";
seek(F,0,0);
binmode(F,":bytes");
-print "not " unless getc(F) eq chr(0xc4);
+my $chr = chr(0xc4);
+if (ord('A') == 193) { $chr = chr(0x8c); } # EBCDIC
+print "not " unless getc(F) eq $chr;
print "ok 6\n";
-print "not " unless getc(F) eq chr(0x80);
+$chr = chr(0x80);
+if (ord('A') == 193) { $chr = chr(0x41); } # EBCDIC
+print "not " unless getc(F) eq $chr;
print "ok 7\n";
-print "not " unless getc(F) eq chr(0xc2);
+$chr = chr(0xc2);
+if (ord('A') == 193) { $chr = chr(0x80); } # EBCDIC
+print "not " unless getc(F) eq $chr;
print "ok 8\n";
-print "not " unless getc(F) eq chr(0xa3);
+$chr = chr(0xa3);
+if (ord('A') == 193) { $chr = chr(0x44); } # EBCDIC
+print "not " unless getc(F) eq $chr;
print "ok 9\n";
print "not " unless getc(F) eq "\n";
print "ok 10\n";
open F, "a" or die $!; # Not UTF
$x = <F>;
chomp($x);
-print "not " unless $x eq chr(196).chr(172);
+$chr = chr(196).chr(172);
+if (ord('A') == 193) { $chr = chr(141).chr(83); } # EBCDIC
+print "not " unless $x eq $chr;
print "ok 15\n";
close F;
}
{ my $x = tell(F);
- { use bytes; $y += 3;}
+ { use bytes; if (ord('A')==193){$y += 2;}else{$y += 3;}} # EBCDIC ASCII
print "not ($x,$y) " unless $x == $y;
print "ok 19\n";
}
open F, "a" or die $!; # Not UTF
$x = <F>;
chomp($x);
-printf "not (%vd) ", $x unless $x eq v196.172.194.130;
+$chr = v196.172.194.130;
+if (ord('A') == 193) { $chr = v141.83.130; } # EBCDIC
+printf "not (%vd) ", $x unless $x eq $chr;
print "ok 20\n";
open F, "<:utf8", "a" or die $!;
open F, "<", "a" or die $!;
$x = <F>; chomp $x;
-print "not " unless $x eq v196.172.130;
+$chr = v196.172.130;
+if (ord('A') == 193) { $chr = v141.83.130; } # EBCDIC
+print "not " unless $x eq $chr;
print "ok 23\n";
# Right.
open F, "<", "a" or die $!;
$x = <F>; chomp $x;
-print "not " unless $x eq v196.172.130;
+print "not " unless $x eq $chr;
print "ok 24\n";
# Now we have a deformed file.
use Digest;
-print "not " unless Digest->MD5->add("abc")->hexdigest eq "900150983cd24fb0d6963f7d28e17f72";
+my $hexdigest = "900150983cd24fb0d6963f7d28e17f72";
+if (ord('A') == 193) { # EBCDIC
+ $hexdigest = "fe4ea0d98f9cd8d1d27f102a93cb0bb0"; # IBM-1047
+}
+
+print "not " unless Digest->MD5->add("abc")->hexdigest eq $hexdigest;
print "ok 1\n";
-print "not " unless Digest->MD5->add("abc")->hexdigest eq "900150983cd24fb0d6963f7d28e17f72";
+print "not " unless Digest->MD5->add("abc")->hexdigest eq $hexdigest;
print "ok 2\n";
eval {