X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.pure.lisp;h=0816e51ec389c576fe5f841d317ae69f94de6f9d;hb=d6f9676ae94419cb5544c45821a8d31adbc1fbe8;hp=26c70f1d17500e96af642235e7b69602b33bc9d4;hpb=4c81c652cdc32faefee1bccb84c3c9a7854e3edd;p=sbcl.git diff --git a/tests/threads.pure.lisp b/tests/threads.pure.lisp index 26c70f1..0816e51 100644 --- a/tests/threads.pure.lisp +++ b/tests/threads.pure.lisp @@ -52,8 +52,7 @@ ;;; Condition-wait should not be interruptible under WITHOUT-INTERRUPTS (with-test (:name without-interrupts+condition-wait - :fails-on :sb-lutex - :skipped-on '(not :sb-thread)) + :skipped-on '(not :sb-thread)) (let* ((lock (make-mutex)) (queue (make-waitqueue)) (thread (make-thread (lambda () @@ -191,7 +190,9 @@ ;;; wich _appear_ to be caused by malloc() and free() not being thread safe: an ;;; interrupted malloc in one thread can apparently block a free in another. There ;;; are also some indications that pthread_mutex_lock is not re-entrant. -(with-test (:name symbol-value-in-thread.3 :skipped-on '(not :sb-thread) :broken-on :darwin) +(with-test (:name symbol-value-in-thread.3 + :skipped-on '(not :sb-thread) + :broken-on :darwin) (let* ((parent *current-thread*) (semaphore (make-semaphore)) (running t) @@ -372,10 +373,8 @@ :ok))) :name "T1"))) ;; Currently we don't consider it a deadlock - ;; if there is a timeout in the chain. No - ;; Timeouts on lutex builds, though. - (assert (eq #-sb-lutex :deadline - #+sb-lutex :deadlock + ;; if there is a timeout in the chain. + (assert (eq :deadline (handler-case (sb-thread:with-mutex (m2) (sb-thread:signal-semaphore s2) @@ -481,3 +480,47 @@ (sb-thread:thread-deadlock () :deadlock)))) (assert (eq :ok (join-thread t1))))) + +#+sb-thread +(with-test (:name :pass-arguments-to-thread) + (assert (= 3 (join-thread (make-thread #'+ :arguments '(1 2)))))) + +#+sb-thread +(with-test (:name :pass-atom-to-thread) + (assert (= 1/2 (join-thread (make-thread #'/ :arguments 2))))) + +#+sb-thread +(with-test (:name :pass-nil-to-thread) + (assert (= 1 (join-thread (make-thread #'* :arguments '()))))) + +#+sb-thread +(with-test (:name :pass-nothing-to-thread) + (assert (= 1 (join-thread (make-thread #'*))))) + +#+sb-thread +(with-test (:name :pass-improper-list-to-thread) + (multiple-value-bind (value error) + (ignore-errors (make-thread #'+ :arguments '(1 . 1))) + (when value + (join-thread value)) + (assert (and (null value) + error)))) + +(with-test (:name (:wait-for :basics)) + (assert (not (sb-ext:wait-for nil :timeout 0.1))) + (assert (eql 42 (sb-ext:wait-for 42))) + (let ((n 0)) + (assert (eql 100 (sb-ext:wait-for (when (= 100 (incf n)) + n)))))) + +(with-test (:name (:wait-for :deadline)) + (assert (eq :ok + (sb-sys:with-deadline (:seconds 10) + (assert (not (sb-ext:wait-for nil :timeout 0.1))) + :ok))) + (assert (eq :deadline + (handler-case + (sb-sys:with-deadline (:seconds 0.1) + (sb-ext:wait-for nil :timeout 10) + (error "oops")) + (sb-sys:deadline-timeout () :deadline)))))