Skip in minitest
Nicholas Clark [Sun, 30 May 2004 13:11:41 +0000 (13:11 +0000)]
p4raw-id: //depot/perl@22866

t/comp/utf.t

index d2037a2..ff2b499 100644 (file)
@@ -7,6 +7,10 @@ BEGIN {
        print "1..0 # Skip: not perlio\n";
        exit 0;
     }
+    if ($ENV{PERL_CORE_MINITEST}) {
+       print "1..0 # Skip: no dynamic loading on miniperl, no threads\n";
+       exit 0;
+    }
 }
 
 require "./test.pl";