From b1f97e02b151845fd514e2fc254e69c1bd35ad48 Mon Sep 17 00:00:00 2001 From: Jim Wise Date: Wed, 9 Nov 2011 22:25:19 -0500 Subject: [PATCH] At least one of the Tests which hang on Darwin also hang on SunOS. Make (not (or darwin sunos)) for the moment, and I'll tey to narrow this down tomorrow. sb-concurrency otherwise builds and tests great with new thread stuff on Solaris/X86 -- on to ../../tests! --- contrib/sb-concurrency/tests/test-mailbox.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/sb-concurrency/tests/test-mailbox.lisp b/contrib/sb-concurrency/tests/test-mailbox.lisp index 5243446..b93b344 100644 --- a/contrib/sb-concurrency/tests/test-mailbox.lisp +++ b/contrib/sb-concurrency/tests/test-mailbox.lisp @@ -40,7 +40,7 @@ ;;; FIXME: Several tests disabled on Darwin due to hangs. Something not right ;;; with mailboxes -- or possibly semaphores -- there. -#+(and sb-thread (not darwin)) +#+(and sb-thread (not (or darwin sunos))) (progn ;; Dummy struct for ATOMIC-INCF to work. @@ -209,4 +209,4 @@ (:garbage . 0) (:timeouts . 0)) -) ; #+sb-thread (progn ... \ No newline at end of file +) ; #+sb-thread (progn ... -- 1.7.10.4