X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.pure.lisp;h=00040dd37130908b8c1144397b3f3a186c63af59;hb=df2d632ead05d542d3cdd2d8d162060ee586c151;hp=717fb36a13b2f0f5c518bcafd377a8316993f4f4;hpb=243b236bc184743953e7ba3730c9dd86f869bb31;p=sbcl.git diff --git a/tests/threads.pure.lisp b/tests/threads.pure.lisp index 717fb36..00040dd 100644 --- a/tests/threads.pure.lisp +++ b/tests/threads.pure.lisp @@ -14,16 +14,29 @@ (in-package :cl-user) (defpackage :thread-test - (:use :cl :sb-thread)) + (:use :cl :sb-thread :sb-ext)) (in-package :thread-test) (use-package :test-util) +(with-test (:name atomic-update + :skipped-on '(not :sb-thread)) + (let ((x (cons :count 0)) + (nthreads (ecase sb-vm:n-word-bits (32 100) (64 1000)))) + (mapc #'sb-thread:join-thread + (loop repeat nthreads + collect (sb-thread:make-thread + (lambda () + (loop repeat 1000 + do (atomic-update (cdr x) #'1+) + (sleep 0.00001)))))) + (assert (equal x `(:count ,@(* 1000 nthreads)))))) + (with-test (:name mutex-owner) ;; Make sure basics are sane on unithreaded ports as well (let ((mutex (make-mutex))) - (get-mutex mutex) + (grab-mutex mutex) (assert (eq *current-thread* (mutex-value mutex))) (handler-bind ((warning #'error)) (release-mutex mutex)) @@ -43,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 () @@ -59,11 +73,11 @@ (sleep 1) (assert (not (thread-alive-p thread))))) -;;; GET-MUTEX should not be interruptible under WITHOUT-INTERRUPTS +;;; GRAB-MUTEX should not be interruptible under WITHOUT-INTERRUPTS -(with-test (:name without-interrupts+get-mutex :skipped-on '(not :sb-thread)) +(with-test (:name without-interrupts+grab-mutex :skipped-on '(not :sb-thread)) (let* ((lock (make-mutex)) - (bar (progn (get-mutex lock) nil)) + (bar (progn (grab-mutex lock) nil)) (thread (make-thread (lambda () (sb-sys:without-interrupts (with-mutex (lock) @@ -195,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)) @@ -482,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))))) @@ -513,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 () @@ -547,3 +561,59 @@ (signal-semaphore sem) (try-semaphore sem 1 note) (assert (semaphore-notification-status note)))) + +(with-test (:name (:return-from-thread :normal-thread) + :skipped-on '(not :sb-thread)) + (let* ((thread (make-thread (lambda () + (return-from-thread (values 1 2 3)) + :foo))) + (values (multiple-value-list (join-thread thread)))) + (unless (equal (list 1 2 3) values) + (error "got ~S, wanted (1 2 3)" values)))) + +(with-test (:name (:return-from-thread :main-thread)) + (assert (main-thread-p)) + (assert (eq :oops + (handler-case + (return-from-thread t) + (thread-error () + :oops))))) + +(with-test (:name (:abort-thread :normal-thread) + :skipped-on '(not :sb-thread)) + (let ((thread (make-thread (lambda () + (abort-thread) + :foo)))) + (assert (eq :aborted! (join-thread thread :default :aborted!))))) + +(with-test (:name (:abort-thread :main-thread)) + (assert (main-thread-p)) + (assert (eq :oops + (handler-case + (abort-thread) + (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))))