From: Stas Boukarev Date: Wed, 16 Oct 2013 13:10:37 +0000 (+0400) Subject: Disable some sb-concurrency tests on win32. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=a7699535aaba71765335f3be0a2103b2f07941af;p=sbcl.git Disable some sb-concurrency tests on win32. Some mailbox tests are hanging stopping from building other contribs. --- diff --git a/contrib/sb-concurrency/tests/test-mailbox.lisp b/contrib/sb-concurrency/tests/test-mailbox.lisp index d38459b..618f018 100644 --- a/contrib/sb-concurrency/tests/test-mailbox.lisp +++ b/contrib/sb-concurrency/tests/test-mailbox.lisp @@ -166,7 +166,7 @@ `(:errors . ,errors) `(:timeouts . ,timeouts)))))))) - +#-win32 (deftest mailbox.single-producer-single-consumer (test-mailbox-producers-consumers :n-senders 1 :n-receivers 1 @@ -176,6 +176,7 @@ (:errors . 0) (:timeouts . 0)) +#-win32 (deftest mailbox.single-producer-multiple-consumers (test-mailbox-producers-consumers :n-senders 1 :n-receivers 100 @@ -185,6 +186,7 @@ (:errors . 0) (:timeouts . 0)) +#-win32 (deftest mailbox.multiple-producers-single-consumer (test-mailbox-producers-consumers :n-senders 10 :n-receivers 1 @@ -194,6 +196,7 @@ (:errors . 0) (:timeouts . 0)) +#-win32 (deftest mailbox.multiple-producers-multiple-consumers (test-mailbox-producers-consumers :n-senders 50 :n-receivers 50