diff options
author | Karl Williamson <khw@cpan.org> | 2014-10-29 10:08:46 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-03-05 14:09:32 -0700 |
commit | 54c2f00215f3a482583168c48e37c530777cca75 (patch) | |
tree | 6cb43ce6f20bb5973a512d7de4b047d6001d80f7 /t/comp/require.t | |
parent | b09cd55147659a444e0092b3ee3b9334354cd4c8 (diff) | |
download | perl-54c2f00215f3a482583168c48e37c530777cca75.tar.gz |
t/comp/require.t: No longer needed to skip on EBCDIC
Diffstat (limited to 't/comp/require.t')
-rw-r--r-- | t/comp/require.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/comp/require.t b/t/comp/require.t index ea569ad08f..be43c63291 100644 --- a/t/comp/require.t +++ b/t/comp/require.t @@ -346,9 +346,9 @@ if (defined &DynaLoader::boot_DynaLoader) { # Add generic tests before this point. # ########################################## -# UTF-encoded things - skipped on EBCDIC machines and on UTF-8 input +# UTF-encoded things - skipped on UTF-8 input -if ($Is_EBCDIC || $Is_UTF8) { exit; } +if ($Is_UTF8) { exit; } my %templates = ( 'UTF-8' => 'C0U', |