If no Socket should not try to test Net::
Jarkko Hietaniemi [Fri, 3 May 2002 03:52:08 +0000 (03:52 +0000)]
p4raw-id: //depot/perl@16365

t/lib/1_compile.t

index 1af3ecf..4918c3f 100644 (file)
@@ -18,9 +18,12 @@ use File::Spec::Functions;
 my @Core_Modules = grep /\S/, <DATA>;
 chomp @Core_Modules;
 
-# Two Net:: modules need the Convert::EBCDIC if in EBDCIC.
-if (ord("A") != 193 || eval { require Convert::EBCDIC }) {
-    push @Core_Modules, qw(Net::Cmd Net::POP3);
+if (eval { require Socket }) {
+  push @Core_Modules, qw(Net::Domain);
+  # Two Net:: modules need the Convert::EBCDIC if in EBDCIC.
+  if (ord("A") != 193 || eval { require Convert::EBCDIC }) {
+      push @Core_Modules, qw(Net::Cmd Net::POP3);
+  }
 }
 
 @Core_Modules = sort @Core_Modules;