From: Jarkko Hietaniemi Date: Mon, 29 Oct 2001 13:35:35 +0000 (+0000) Subject: In EBCDIC cannot test compile Net::Cmd without Convert::EBCDIC. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3de3f243803f0137ba3b3c90aff49200f1481a3d;p=p5sagit%2Fp5-mst-13.2.git In EBCDIC cannot test compile Net::Cmd without Convert::EBCDIC. p4raw-id: //depot/perl@12761 --- diff --git a/t/lib/1_compile.t b/t/lib/1_compile.t index d066994..f9df96b 100644 --- a/t/lib/1_compile.t +++ b/t/lib/1_compile.t @@ -92,6 +92,10 @@ unless (has_extension('NDBM_File')) { delete_by_prefix('unicode::'); +if (ord('A') == 193) { + delete_by_name('Net::Cmd') unless eval { require Convert::EBCDIC }; +} + # Delete all modules which have their own tests. # This makes this test a lot faster. foreach my $mod (sort keys %Test) {