X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Flocale.t;h=a294d2fbc2b54d2759ce60d96a592f61766269c3;hb=a6ab0b5c7971198624b2f1ac7ae236adc2773b84;hp=2143b9f87414330206707185d8bb350684b83a2c;hpb=5fef21a34e2a36dc7c83d55110ccc5c57cc7d14d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/locale.t b/lib/locale.t index 2143b9f..a294d2f 100644 --- a/lib/locale.t +++ b/lib/locale.t @@ -45,6 +45,9 @@ eval { # and mingw32 uses said silly CRT $have_setlocale = 0 if (($^O eq 'MSWin32' || $^O eq 'NetWare') && $Config{cc} =~ /^(cl|gcc)/i); +# UWIN seems to loop after test 98, just skip for now +$have_setlocale = 0 if ($^O =~ /^uwin/); + my $last = $have_setlocale ? &last : &last_without_setlocale; print "1..$last\n";