summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-07-07 16:48:50 -0600
committerKarl Williamson <khw@cpan.org>2021-07-25 10:15:29 -0600
commitf07fa16500a2c3a14d8403506d7f67ce1f743b4a (patch)
tree9fce929ec1b625cf27bfc84216fc81177abdb546 /t
parent9ab40e4a9ef6ccc7dac62ecfaa69d6b79a7a1399 (diff)
downloadperl-f07fa16500a2c3a14d8403506d7f67ce1f743b4a.tar.gz
comp/require.t
Remove obsolete EBCDIC references. This no longer skips tests on EBCDIC, working equally well on it as well as ASCII.
Diffstat (limited to 't')
-rw-r--r--t/comp/require.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/comp/require.t b/t/comp/require.t
index 0db47d12fa..f79480f194 100644
--- a/t/comp/require.t
+++ b/t/comp/require.t
@@ -32,10 +32,9 @@ if (grep -e, @files_to_delete) {
}
-my $Is_EBCDIC = (ord('A') == 193) ? 1 : 0;
my $Is_UTF8 = (${^OPEN} || "") =~ /:utf8/;
my $total_tests = 58;
-if ($Is_EBCDIC || $Is_UTF8) { $total_tests -= 3; }
+if ($Is_UTF8) { $total_tests -= 3; }
print "1..$total_tests\n";
sub write_file {