From ec721aa4475fcfe0f8cec81d05a08171757de199 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 30 May 2004 13:11:41 +0000 Subject: [PATCH] Skip in minitest p4raw-id: //depot/perl@22866 --- t/comp/utf.t | 4 ++++ 1 file changed, 4 insertions(+) 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"; -- 2.7.4