diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-03-07 19:54:38 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-03-07 19:54:38 +0000 |
commit | 028bf728e74682b00bb4314e33ce78574dee577a (patch) | |
tree | ee086ae1c9679ca3d4f802e124c144ced7d05d1b /t/japh | |
parent | a7af648ea0c026146d2bd0195695342a9cddc338 (diff) | |
download | perl-028bf728e74682b00bb4314e33ce78574dee577a.tar.gz |
Refactor 4 tests to use skip_all(), instead of longhand code to generate TAP.
Diffstat (limited to 't/japh')
-rw-r--r-- | t/japh/abigail.t | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/japh/abigail.t b/t/japh/abigail.t index f397bb96be..f5115bc2a7 100644 --- a/t/japh/abigail.t +++ b/t/japh/abigail.t @@ -24,13 +24,10 @@ # BEGIN { - if (ord("A") == 193) { - print "1..0 # Skip: EBCDIC\n"; # For now, until someone has time. - exit(0); - } chdir 't' if -d 't'; @INC = '../lib'; require "./test.pl"; + skip_all('EBCDIC') if $::IS_EBCDIC; undef &skip; } |