Skip under miniperl (cannot load Fcntl)
Rafael Garcia-Suarez [Mon, 25 May 2009 10:15:09 +0000 (12:15 +0200)]
t/io/perlio_open.t

index 7d870b9..e8e10fb 100644 (file)
@@ -1,11 +1,12 @@
 #!./perl
 
-use strict;
-use warnings;
-
 BEGIN {
     chdir 't' if -d 't';
     @INC = '../lib';
+    if ($ENV{PERL_CORE_MINITEST}) {
+       print "1..0 # Skip: no Fcntl under miniperl\n";
+       exit 0;
+    }
     unless (find PerlIO::Layer 'perlio') {
        print "1..0 # Skip: not perlio\n";
        exit 0;
@@ -17,6 +18,9 @@ BEGIN {
     }
 }
 
+use strict;
+use warnings;
+
 use Test::More tests => 6;
 
 use Fcntl qw(:seek);