That test too should be skipped in the core on EBCDIC platforms
Rafael Garcia-Suarez [Mon, 25 Jun 2007 10:23:47 +0000 (10:23 +0000)]
(because it requires Convert::EBCDIC)

p4raw-id: //depot/perl@31460

lib/Net/t/datasend.t

index 0786709..96b5b7c 100644 (file)
@@ -1,6 +1,19 @@
 #!./perl -w
 
 BEGIN {
+    if ($ENV{PERL_CORE}) {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+    if (!eval "require Socket") {
+       print "1..0 # no Socket\n"; exit 0;
+    }
+    if (ord('A') == 193 && !eval "require Convert::EBCDIC") {
+        print "1..0 # EBCDIC but no Convert::EBCDIC\n"; exit 0;
+    }
+}
+
+BEGIN {
   package Foo;
 
   use IO::File;