X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.impure.lisp;h=11b39cf1c84e5ae89e42107d64b24fea0b59168e;hb=e7476d980c0b4949c9416b59249d0d621c0f747d;hp=9db5021388c6f3e8bbfdac3dfd38fe3def0820bb;hpb=9373c1691aee82e4e21379b85400c3ea363adf47;p=sbcl.git diff --git a/tests/threads.impure.lisp b/tests/threads.impure.lisp index 9db5021..11b39cf 100644 --- a/tests/threads.impure.lisp +++ b/tests/threads.impure.lisp @@ -43,28 +43,30 @@ mutex)) (sb-alien:define-alien-routine "check_deferrables_blocked_or_lose" - void) + void + (where sb-alien:unsigned-long)) (sb-alien:define-alien-routine "check_deferrables_unblocked_or_lose" - void) + void + (where sb-alien:unsigned-long)) (with-test (:name (:interrupt-thread :deferrables-blocked)) (sb-thread:interrupt-thread sb-thread:*current-thread* (lambda () - (check-deferrables-blocked-or-lose)))) + (check-deferrables-blocked-or-lose 0)))) (with-test (:name (:interrupt-thread :deferrables-unblocked)) (sb-thread:interrupt-thread sb-thread:*current-thread* (lambda () (with-interrupts - (check-deferrables-unblocked-or-lose))))) + (check-deferrables-unblocked-or-lose 0))))) (with-test (:name (:interrupt-thread :nlx)) (catch 'xxx (sb-thread:interrupt-thread sb-thread:*current-thread* (lambda () - (check-deferrables-blocked-or-lose) + (check-deferrables-blocked-or-lose 0) (throw 'xxx nil)))) - (check-deferrables-unblocked-or-lose)) + (check-deferrables-unblocked-or-lose 0)) #-sb-thread (sb-ext:quit :unix-status 104) @@ -75,9 +77,9 @@ (sb-thread::get-spinlock spinlock) (sb-thread:interrupt-thread thread (lambda () - (check-deferrables-blocked-or-lose) + (check-deferrables-blocked-or-lose 0) (sb-thread::get-spinlock spinlock) - (check-deferrables-unblocked-or-lose) + (check-deferrables-unblocked-or-lose 0) (sb-ext:quit))) (sleep 1) (sb-thread::release-spinlock spinlock))) @@ -871,6 +873,9 @@ | (mp:make-process #'roomy))) |# +;;; KLUDGE: No deadlines while waiting on lutex-based condition variables. This test +;;; would just hang. +#-sb-lutex (with-test (:name (:condition-variable :wait-multiple)) (loop repeat 40 do (let ((waitqueue (sb-thread:make-waitqueue :name "Q"))