]> gitweb.factorcode.org Git - factor.git/commitdiff
game.input: This test fails on Windows machines without mice. Disable
authorDoug Coleman <doug.coleman@gmail.com>
Fri, 1 Sep 2017 14:19:24 +0000 (09:19 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Fri, 1 Sep 2017 14:19:24 +0000 (09:19 -0500)
for now

basis/game/input/input-tests.factor

index 8cd3daa1d76d5448dc26ee49a9186c073582f42c..22c0b20dda39d90b9ccfd8375c86644424ec993b 100644 (file)
@@ -2,7 +2,9 @@ USING: ui game.input tools.test kernel system threads calendar
 combinators.short-circuit ;
 IN: game.input.tests
 
-os { [ windows? ] [ macosx? ] } 1|| [
+! os { [ windows? ] [ macosx? ] } 1|| [
+! This test only works if a mouse is present. Issue #1844
+os { [ macosx? ] } 1|| [
     [ ] [ open-game-input ] unit-test
     [ ] [ 1 seconds sleep ] unit-test
     [ ] [ close-game-input ] unit-test