This needs POSIX, so skip if no POSIX
authorNicholas Clark <nick@ccl4.org>
Fri, 18 Jun 2004 13:45:51 +0000 (13:45 +0000)
committerNicholas Clark <nick@ccl4.org>
Fri, 18 Jun 2004 13:45:51 +0000 (13:45 +0000)
p4raw-id: //depot/perl@22958

lib/Pod/t/basic.t

index a61b4bf..984e720 100644 (file)
@@ -16,6 +16,11 @@ BEGIN {
         unshift (@INC, '../blib/lib');
     }
     unshift (@INC, '../blib/lib');
+    require Config;
+    if (($Config::Config{'extensions'} !~ /\bPOSIX\b/) ){
+        print "1..0 # Skip -- Perl configured without POSIX module\n";
+        exit 0;
+    }
     $| = 1;
     print "1..11\n";
 }