Skip win32core.t under Cygwin
[p5sagit/p5-mst-13.2.git] / ext / Win32CORE / t / win32core.t
index d45eb38..b145de5 100644 (file)
@@ -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" );