Skip a test that fails on some platforms
gfx [Wed, 9 Jun 2010 09:45:42 +0000 (18:45 +0900)]
t/900_mouse_bugs/006_RT69939.t

index 680dee8..c211a2c 100644 (file)
@@ -1,5 +1,13 @@
 #!perl -w
 
+use Test::More;
+
+BEGIN {
+    if($^O =~ /bsd/) {
+        plan skip_all => q{TODO: *bsd might fail on this tests (this test is an workaround to a core bug)};
+    }
+}
+
 package Foo;
 use Mouse;