Need to skip optree walking tests if perlio not built
Nicholas Clark [Wed, 20 Oct 2004 22:39:36 +0000 (22:39 +0000)]
p4raw-id: //depot/perl@23395

ext/B/t/f_map.t
ext/B/t/f_sort.t

index 7d4303f..ff22dde 100644 (file)
@@ -8,6 +8,10 @@ BEGIN {
         print "1..0 # Skip -- Perl configured without B module\n";
         exit 0;
     }
+    if (!$Config::Config{useperlio}) {
+        print "1..0 # Skip -- need perlio to walk the optree\n";
+        exit 0;
+    }
     if ($] < 5.009) {
         print "1..0 # Skip -- TODO - provide golden result regexps for 5.8\n";
         exit 0;
index c6f6bc4..26dfbe4 100644 (file)
@@ -8,6 +8,10 @@ BEGIN {
         print "1..0 # Skip -- Perl configured without B module\n";
         exit 0;
     }
+    if (!$Config::Config{useperlio}) {
+        print "1..0 # Skip -- need perlio to walk the optree\n";
+        exit 0;
+    }
     if ($] < 5.009) {
         print "1..0 # Skip -- TODO - provide golden result regexps for 5.8\n";
         exit 0;