summaryrefslogtreecommitdiff
path: root/t/uni
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-03-07 17:36:55 +0000
committerNicholas Clark <nick@ccl4.org>2011-03-07 17:36:55 +0000
commit95e2dc41df5a5b893cbc879e1fce6d1a86aa8711 (patch)
treeab2e66428f0f2162cbace655679f843011b53125 /t/uni
parentfa71130c50712ca92335bb3b5c6deef0700bc24d (diff)
downloadperl-95e2dc41df5a5b893cbc879e1fce6d1a86aa8711.tar.gz
Refactor 5 tests to use skip_all(), instead of generating TAP locally.
Diffstat (limited to 't/uni')
-rw-r--r--t/uni/lex_utf8.t5
1 files changed, 1 insertions, 4 deletions
diff --git a/t/uni/lex_utf8.t b/t/uni/lex_utf8.t
index a5747cb577..e080245d6e 100644
--- a/t/uni/lex_utf8.t
+++ b/t/uni/lex_utf8.t
@@ -3,14 +3,11 @@
# This script is written intentionally in UTF-8
BEGIN {
- if (ord("A") == 193) {
- print "1..0 # Skip: EBCDIC\n";
- exit 0;
- }
$| = 1;
require './test.pl';
skip_all_if_miniperl("no dynamic loading on miniperl, no re");
+ skip_all('EBCDIC') if $::IS_EBCDIC;
}
use strict;