diff options
author | Dan Kogai <dankogai@dan.co.jp> | 2003-06-08 20:04:43 +0900 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-06-08 17:05:59 +0000 |
commit | 9c593e561852176647e05b5ce7f8a86c1208b1df (patch) | |
tree | 2efee737dc6552b3caaa18e2f68bbb8f3ed914af /ext/Encode | |
parent | 6b34ded522041fe3e2ad5054aa6dbc51c43f9d7e (diff) | |
download | perl-9c593e561852176647e05b5ce7f8a86c1208b1df.tar.gz |
Re: forwarded you a test result
Message-Id: <92344ED4-9955-11D7-8DFA-000393AE4244@dan.co.jp>
p4raw-id: //depot/perl@19712
Diffstat (limited to 'ext/Encode')
-rw-r--r-- | ext/Encode/t/Encode.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/Encode/t/Encode.t b/ext/Encode/t/Encode.t index fc71a91064..784ea74117 100644 --- a/ext/Encode/t/Encode.t +++ b/ext/Encode/t/Encode.t @@ -3,6 +3,10 @@ BEGIN { chdir 't'; unshift @INC, '../lib'; } + if (ord("A") == 193) { + print "1..0 # Skip: EBCDIC\n"; + exit 0; + } require Config; import Config; if ($Config{'extensions'} !~ /\bEncode\b/) { print "1..0 # Skip: Encode was not built\n"; |