X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fdeadline.impure.lisp;h=9242b3c2f0054a4b0345c118135f33a26b09f129;hb=ee5629ee974ee8ce7a1cb245a99e94f8943ffd90;hp=32f14f3a069b3b78bcb9229eaf28b1961091b3f1;hpb=69fe69971242dba6905e9c55f8ce6a9a93c9e403;p=sbcl.git diff --git a/tests/deadline.impure.lisp b/tests/deadline.impure.lisp index 32f14f3..9242b3c 100644 --- a/tests/deadline.impure.lisp +++ b/tests/deadline.impure.lisp @@ -65,7 +65,7 @@ (assert (= n 1)) (assert (not final)))) -(with-test (:name (:deadline :get-mutex) :skipped-on '(not (and :sb-thread (not :sb-lutex)))) +(with-test (:name (:deadline :get-mutex) :skipped-on '(not :sb-thread)) (assert-timeout (let ((lock (sb-thread:make-mutex)) (waitp t)) @@ -77,19 +77,19 @@ (sb-sys:with-deadline (:seconds 1) (sb-thread:get-mutex lock))))) -(with-test (:name (:deadline :wait-on-semaphore) :skipped-on '(not (and :sb-thread (not :sb-lutex)))) +(with-test (:name (:deadline :wait-on-semaphore) :skipped-on '(not :sb-thread)) (assert-timeout (let ((sem (sb-thread::make-semaphore :count 0))) (sb-sys:with-deadline (:seconds 1) (sb-thread::wait-on-semaphore sem))))) -(with-test (:name (:deadline :join-thread) :skipped-on '(not (and :sb-thread (not :sb-lutex)))) +(with-test (:name (:deadline :join-thread) :skipped-on '(not :sb-thread)) (assert-timeout (sb-sys:with-deadline (:seconds 1) (sb-thread:join-thread (sb-thread:make-thread (lambda () (loop (sleep 1)))))))) -(with-test (:name (:deadline :futex-wait-eintr) :skipped-on '(not (and :sb-thread (not :sb-lutex)))) +(with-test (:name (:deadline :futex-wait-eintr) :skipped-on '(not :sb-thread)) (let ((lock (sb-thread:make-mutex)) (waitp t)) (sb-thread:make-thread (lambda ()