X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.pure.lisp;h=00040dd37130908b8c1144397b3f3a186c63af59;hb=c6f5bc9d26b4f3d46c1d9947b5ea5a3514c802b3;hp=2db34c22d682f496472232fc3ddfac27204662fe;hpb=8afcf4f95efb986b5eabd5f19731de4e2ee192e2;p=sbcl.git diff --git a/tests/threads.pure.lisp b/tests/threads.pure.lisp index 2db34c2..00040dd 100644 --- a/tests/threads.pure.lisp +++ b/tests/threads.pure.lisp @@ -25,10 +25,10 @@ (let ((x (cons :count 0)) (nthreads (ecase sb-vm:n-word-bits (32 100) (64 1000)))) (mapc #'sb-thread:join-thread - (loop repeat 1000 + (loop repeat nthreads collect (sb-thread:make-thread (lambda () - (loop repeat nthreads + (loop repeat 1000 do (atomic-update (cdr x) #'1+) (sleep 0.00001)))))) (assert (equal x `(:count ,@(* 1000 nthreads)))))) @@ -56,7 +56,8 @@ ;;; Condition-wait should not be interruptible under WITHOUT-INTERRUPTS (with-test (:name without-interrupts+condition-wait - :skipped-on '(not :sb-thread)) + :skipped-on '(not :sb-thread) + :fails-on '(and :win32 :sb-futex)) (let* ((lock (make-mutex)) (queue (make-waitqueue)) (thread (make-thread (lambda () @@ -208,7 +209,7 @@ (loop repeat (random 128) do (setf ** *))))))) (write-string "; ") - (dotimes (i 15000) + (dotimes (i #+win32 2000 #-win32 15000) (when (zerop (mod i 200)) (write-char #\.) (force-output)) @@ -413,14 +414,14 @@ (assert (and (null value) error)))) -(with-test (:name (:wait-for :basics) :fails-on :win32) +(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) :fails-on :win32) +(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))) @@ -432,7 +433,7 @@ (error "oops")) (sb-sys:deadline-timeout () :deadline))))) -(with-test (:name (:condition-wait :timeout :one-thread) :fails-on :win32) +(with-test (:name (:condition-wait :timeout :one-thread)) (let ((mutex (make-mutex)) (waitqueue (make-waitqueue))) (assert (not (with-mutex (mutex) @@ -465,7 +466,7 @@ (unless (eql 50 ok) (error "Wanted 50, got ~S" ok))))) -(with-test (:name (:wait-on-semaphore :timeout :one-thread) :fails-on :win32) +(with-test (:name (:wait-on-semaphore :timeout :one-thread)) (let ((sem (make-semaphore)) (n 0)) (signal-semaphore sem 10) @@ -495,12 +496,12 @@ :skipped-on '(not :sb-thread)) (assert (eq :error (handler-case - (join-thread (make-thread (lambda () (sleep 10))) :timeout 0.01) + (join-thread (make-join-thread (lambda () (sleep 10))) :timeout 0.01) (join-thread-error () :error)))) (let ((cookie (cons t t))) (assert (eq cookie - (join-thread (make-thread (lambda () (sleep 10))) + (join-thread (make-join-thread (lambda () (sleep 10))) :timeout 0.01 :default cookie))))) @@ -526,7 +527,7 @@ #+sb-thread (sb-thread::block-deferrable-signals)))))) (let* ((threads (loop for i from 1 upto 100 - collect (make-thread #'critical :name (format nil "T~A" i)))) + collect (make-join-thread #'critical :name (format nil "T~A" i)))) (safe nil) (unsafe nil) (interruptor (make-thread (lambda () @@ -593,3 +594,26 @@ (thread-error () :oops))))) +;; SB-THREAD:MAKE-THREAD used to lock SB-THREAD:*MAKE-THREAD-LOCK* +;; before entering WITHOUT-INTERRUPTS. When a thread which was +;; executing SB-THREAD:MAKE-THREAD was interrupted with code which +;; also called SB-THREAD:MAKE-THREAD, it could happen that the first +;; thread already owned SB-THREAD:*MAKE-THREAD-LOCK* and the +;; interrupting code thus made a recursive lock attempt. +;; +;; See (:TIMER :DISPATCH-THREAD :MAKE-THREAD :BUG-1180102) in +;; timer.impure.lisp. +(with-test (:name (make-thread :interrupt-with make-thread :bug-1180102) + :skipped-on '(not :sb-thread)) + (dotimes (i 100) + (let ((threads '()) + (parent *current-thread*)) + (dotimes (i 100) + (push (make-thread + (lambda () + (interrupt-thread + parent + (lambda () (push (make-thread (lambda ())) threads))))) + threads) + (push (make-thread (lambda ())) threads)) + (mapc #'join-thread threads))))