X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.pure.lisp;h=ea80fa33e06d9b4c2794953c52b2fe9cd98432ff;hb=5cb51577bd59c36822e90fb814564bb7d59ee37e;hp=118422c88db1ce3dc73fb1bdf79923ea15411890;hpb=f0da2f63aa0b4e6d4dbf884854a4bf2dfdd01fc0;p=sbcl.git diff --git a/tests/threads.pure.lisp b/tests/threads.pure.lisp index 118422c..ea80fa3 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 () @@ -548,7 +562,8 @@ (try-semaphore sem 1 note) (assert (semaphore-notification-status note)))) -(with-test (:name (:return-from-thread :normal-thread)) +(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))) @@ -564,7 +579,8 @@ (thread-error () :oops))))) -(with-test (:name (:abort-thread :normal-thread)) +(with-test (:name (:abort-thread :normal-thread) + :skipped-on '(not :sb-thread)) (let ((thread (make-thread (lambda () (abort-thread) :foo))))