From: Nicholas Clark Date: Sun, 30 May 2004 13:11:41 +0000 (+0000) Subject: Skip in minitest X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ec721aa4475fcfe0f8cec81d05a08171757de199;p=p5sagit%2Fp5-mst-13.2.git Skip in minitest p4raw-id: //depot/perl@22866 --- diff --git a/t/comp/utf.t b/t/comp/utf.t index d2037a2..ff2b499 100644 --- a/t/comp/utf.t +++ b/t/comp/utf.t @@ -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";