From: Jerry D. Hedden Date: Sat, 19 May 2007 08:43:47 +0000 (-0400) Subject: Skip win32core.t under Cygwin X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6bad109f4c2fda1eb1feb4d76db7ab7187811afc;p=p5sagit%2Fp5-mst-13.2.git Skip win32core.t under Cygwin From: "Jerry D. Hedden" Message-ID: <1ff86f510705190543r505cfc2fua18e87cd665b8f6e@mail.gmail.com> p4raw-id: //depot/perl@31249 --- diff --git a/ext/Win32CORE/t/win32core.t b/ext/Win32CORE/t/win32core.t index d45eb38..b145de5 100644 --- a/ext/Win32CORE/t/win32core.t +++ b/ext/Win32CORE/t/win32core.t @@ -10,7 +10,11 @@ BEGIN { } } - plan tests => 4; + if ($^O eq 'cygwin') { + plan skip_all => '$^E not functional under Cygwin'; + } else { + plan tests => 4; + } }; use_ok( "Win32CORE" );