Disable some sb-concurrency tests on win32.
authorStas Boukarev <stassats@gmail.com>
Wed, 16 Oct 2013 13:10:37 +0000 (17:10 +0400)
committerStas Boukarev <stassats@gmail.com>
Wed, 16 Oct 2013 13:28:57 +0000 (17:28 +0400)
Some mailbox tests are hanging stopping from building other contribs.

contrib/sb-concurrency/tests/test-mailbox.lisp

index d38459b..618f018 100644 (file)
                      `(:errors   . ,errors)
                      `(:timeouts . ,timeouts))))))))
 
-
+#-win32
 (deftest mailbox.single-producer-single-consumer
     (test-mailbox-producers-consumers :n-senders 1
                                       :n-receivers 1
   (:errors   . 0)
   (:timeouts . 0))
 
+#-win32
 (deftest mailbox.single-producer-multiple-consumers
     (test-mailbox-producers-consumers :n-senders 1
                                       :n-receivers 100
   (:errors   . 0)
   (:timeouts . 0))
 
+#-win32
 (deftest mailbox.multiple-producers-single-consumer
     (test-mailbox-producers-consumers :n-senders 10
                                       :n-receivers 1
   (:errors   . 0)
   (:timeouts . 0))
 
+#-win32
 (deftest mailbox.multiple-producers-multiple-consumers
     (test-mailbox-producers-consumers :n-senders 50
                                       :n-receivers 50