1 ;;;; miscellaneous tests of thread stuff
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absoluely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
16 (in-package "SB-THREAD")
17 (use-package :test-util
)
18 (use-package "ASSERTOID")
20 (setf sb-unix
::*on-dangerous-select
* :error
)
22 (defun wait-for-threads (threads)
23 (mapc (lambda (thread) (sb-thread:join-thread thread
:default nil
)) threads
)
24 (assert (not (some #'sb-thread
:thread-alive-p threads
))))
26 (assert (eql 1 (length (list-all-threads))))
28 (assert (eq *current-thread
*
29 (find (thread-name *current-thread
*) (list-all-threads)
30 :key
#'thread-name
:test
#'equal
)))
32 (assert (thread-alive-p *current-thread
*))
35 (interrupt-thread *current-thread
* (lambda () (setq a
1)))
38 (let ((spinlock (make-spinlock)))
39 (with-spinlock (spinlock)))
41 (let ((mutex (make-mutex)))
45 (sb-alien:define-alien-routine
"check_deferrables_blocked_or_lose"
47 (where sb-alien
:unsigned-long
))
48 (sb-alien:define-alien-routine
"check_deferrables_unblocked_or_lose"
50 (where sb-alien
:unsigned-long
))
52 (with-test (:name
(:interrupt-thread
:deferrables-blocked
))
53 (sb-thread:interrupt-thread sb-thread
:*current-thread
*
55 (check-deferrables-blocked-or-lose 0))))
57 (with-test (:name
(:interrupt-thread
:deferrables-unblocked
))
58 (sb-thread:interrupt-thread sb-thread
:*current-thread
*
61 (check-deferrables-unblocked-or-lose 0)))))
63 (with-test (:name
(:interrupt-thread
:nlx
))
65 (sb-thread:interrupt-thread sb-thread
:*current-thread
*
67 (check-deferrables-blocked-or-lose 0)
69 (check-deferrables-unblocked-or-lose 0))
71 #-sb-thread
(sb-ext:quit
:unix-status
104)
73 (with-test (:name
(:interrupt-thread
:deferrables-unblocked-by-spinlock
))
74 (let ((spinlock (sb-thread::make-spinlock
))
75 (thread (sb-thread:make-thread
(lambda ()
77 (sb-thread::get-spinlock spinlock
)
78 (sb-thread:interrupt-thread thread
80 (check-deferrables-blocked-or-lose 0)
81 (sb-thread::get-spinlock spinlock
)
82 (check-deferrables-unblocked-or-lose 0)
85 (sb-thread::release-spinlock spinlock
)))
89 (defmacro defincf
(name accessor
&rest args
)
91 (let* ((old (,accessor x
,@args
))
93 (loop until
(eq old
(sb-ext:compare-and-swap
(,accessor x
,@args
) old new
))
94 do
(setf old
(,accessor x
,@args
)
98 (defstruct cas-struct
(slot 0))
100 (defincf incf-car car
)
101 (defincf incf-cdr cdr
)
102 (defincf incf-slot cas-struct-slot
)
103 (defincf incf-symbol-value symbol-value
)
104 (defincf incf-svref
/1 svref
1)
105 (defincf incf-svref
/0 svref
0)
107 (defmacro def-test-cas
(name init incf op
)
115 collect
(sb-thread:make-thread
118 do
(sb-thread:thread-yield
))
119 (loop repeat n do
(,incf x
)))))))
122 (sb-thread:join-thread th
))
123 (assert (= (,op x
) (* 10 n
)))))
126 (def-test-cas test-cas-car
(cons 0 nil
) incf-car car
)
127 (def-test-cas test-cas-cdr
(cons nil
0) incf-cdr cdr
)
128 (def-test-cas test-cas-slot
(make-cas-struct) incf-slot cas-struct-slot
)
129 (def-test-cas test-cas-value
(let ((x '.x.
))
132 incf-symbol-value symbol-value
)
133 (def-test-cas test-cas-svref
/0 (vector 0 nil
) incf-svref
/0 (lambda (x)
135 (def-test-cas test-cas-svref
/1 (vector nil
0) incf-svref
/1 (lambda (x)
137 (format t
"~&compare-and-swap tests done~%")
139 (let ((old-threads (list-all-threads))
140 (thread (make-thread (lambda ()
141 (assert (find *current-thread
* *all-threads
*))
143 (new-threads (list-all-threads)))
144 (assert (thread-alive-p thread
))
145 (assert (eq thread
(first new-threads
)))
146 (assert (= (1+ (length old-threads
)) (length new-threads
)))
148 (assert (not (thread-alive-p thread
))))
150 (with-test (:name
'(:join-thread
:nlx
:default
))
151 (let ((sym (gensym)))
152 (assert (eq sym
(join-thread (make-thread (lambda () (sb-ext:quit
)))
155 (with-test (:name
'(:join-thread
:nlx
:error
))
156 (raises-error?
(join-thread (make-thread (lambda () (sb-ext:quit
))))
159 (with-test (:name
'(:join-thread
:multiple-values
))
160 (assert (equal '(1 2 3)
162 (join-thread (make-thread (lambda () (values 1 2 3))))))))
164 ;;; We had appalling scaling properties for a while. Make sure they
166 (defun scaling-test (function &optional
(nthreads 5))
167 "Execute FUNCTION with NTHREADS lurking to slow it down."
168 (let ((queue (sb-thread:make-waitqueue
))
169 (mutex (sb-thread:make-mutex
)))
170 ;; Start NTHREADS idle threads.
171 (dotimes (i nthreads
)
172 (sb-thread:make-thread
(lambda ()
174 (sb-thread:condition-wait queue mutex
))
176 (let ((start-time (get-internal-run-time)))
178 (prog1 (- (get-internal-run-time) start-time
)
179 (sb-thread:condition-broadcast queue
)))))
181 "A function that does work with the CPU."
182 (if (zerop n
) 1 (* n
(fact (1- n
)))))
183 (let ((work (lambda () (fact 15000))))
184 (let ((zero (scaling-test work
0))
185 (four (scaling-test work
4)))
186 ;; a slightly weak assertion, but good enough for starters.
187 (assert (< four
(* 1.5 zero
)))))
189 ;;; For one of the interupt-thread tests, we want a foreign function
190 ;;; that does not make syscalls
192 (with-open-file (o "threads-foreign.c" :direction
:output
:if-exists
:supersede
)
193 (format o
"void loop_forever() { while(1) ; }~%"))
195 #-sunos
"cc" #+sunos
"gcc"
196 (or #+(or linux freebsd sunos
) '(#+x86-64
"-fPIC"
197 "-shared" "-o" "threads-foreign.so" "threads-foreign.c")
198 #+darwin
'(#+x86-64
"-arch" #+x86-64
"x86_64"
199 "-dynamiclib" "-o" "threads-foreign.so" "threads-foreign.c")
200 (error "Missing shared library compilation options for this platform"))
202 (sb-alien:load-shared-object
(truename "threads-foreign.so"))
203 (sb-alien:define-alien-routine loop-forever sb-alien
:void
)
204 (delete-file "threads-foreign.c")
206 ;;; elementary "can we get a lock and release it again"
207 (let ((l (make-mutex :name
"foo"))
208 (p *current-thread
*))
209 (assert (eql (mutex-value l
) nil
) nil
"1")
210 (sb-thread:get-mutex l
)
211 (assert (eql (mutex-value l
) p
) nil
"3")
212 (sb-thread:release-mutex l
)
213 (assert (eql (mutex-value l
) nil
) nil
"5"))
215 (labels ((ours-p (value)
216 (eq *current-thread
* value
)))
217 (let ((l (make-mutex :name
"rec")))
218 (assert (eql (mutex-value l
) nil
) nil
"1")
219 (sb-thread:with-recursive-lock
(l)
220 (assert (ours-p (mutex-value l
)) nil
"3")
221 (sb-thread:with-recursive-lock
(l)
222 (assert (ours-p (mutex-value l
)) nil
"4"))
223 (assert (ours-p (mutex-value l
)) nil
"5"))
224 (assert (eql (mutex-value l
) nil
) nil
"6")))
226 (labels ((ours-p (value)
227 (eq *current-thread
* value
)))
228 (let ((l (make-spinlock :name
"rec")))
229 (assert (eql (spinlock-value l
) nil
) nil
"1")
230 (with-recursive-spinlock (l)
231 (assert (ours-p (spinlock-value l
)) nil
"3")
232 (with-recursive-spinlock (l)
233 (assert (ours-p (spinlock-value l
)) nil
"4"))
234 (assert (ours-p (spinlock-value l
)) nil
"5"))
235 (assert (eql (spinlock-value l
) nil
) nil
"6")))
237 (with-test (:name
(:mutex
:nesting-mutex-and-recursive-lock
))
238 (let ((l (make-mutex :name
"a mutex")))
240 (with-recursive-lock (l)))))
242 (with-test (:name
(:spinlock
:nesting-spinlock-and-recursive-spinlock
))
243 (let ((l (make-spinlock :name
"a spinlock")))
245 (with-recursive-spinlock (l)))))
247 (let ((l (make-spinlock :name
"spinlock")))
248 (assert (eql (spinlock-value l
) nil
) ((spinlock-value l
))
249 "spinlock not free (1)")
251 (assert (eql (spinlock-value l
) *current-thread
*) ((spinlock-value l
))
252 "spinlock not taken"))
253 (assert (eql (spinlock-value l
) nil
) ((spinlock-value l
))
254 "spinlock not free (2)"))
256 ;; test that SLEEP actually sleeps for at least the given time, even
257 ;; if interrupted by another thread exiting/a gc/anything
258 (let ((start-time (get-universal-time)))
259 (make-thread (lambda () (sleep 1) (sb-ext:gc
:full t
)))
261 (assert (>= (get-universal-time) (+ 5 start-time
))))
264 (let ((queue (make-waitqueue :name
"queue"))
265 (lock (make-mutex :name
"lock"))
267 (labels ((in-new-thread ()
269 (assert (eql (mutex-value lock
) *current-thread
*))
270 (format t
"~A got mutex~%" *current-thread
*)
271 ;; now drop it and sleep
272 (condition-wait queue lock
)
273 ;; after waking we should have the lock again
274 (assert (eql (mutex-value lock
) *current-thread
*))
277 (make-thread #'in-new-thread
)
278 (sleep 2) ; give it a chance to start
279 ;; check the lock is free while it's asleep
280 (format t
"parent thread ~A~%" *current-thread
*)
281 (assert (eql (mutex-value lock
) nil
))
284 (condition-notify queue
))
287 (let ((queue (make-waitqueue :name
"queue"))
288 (lock (make-mutex :name
"lock")))
289 (labels ((ours-p (value)
290 (eq *current-thread
* value
))
292 (with-recursive-lock (lock)
293 (assert (ours-p (mutex-value lock
)))
294 (format t
"~A got mutex~%" (mutex-value lock
))
295 ;; now drop it and sleep
296 (condition-wait queue lock
)
297 ;; after waking we should have the lock again
298 (format t
"woken, ~A got mutex~%" (mutex-value lock
))
299 (assert (ours-p (mutex-value lock
))))))
300 (make-thread #'in-new-thread
)
301 (sleep 2) ; give it a chance to start
302 ;; check the lock is free while it's asleep
303 (format t
"parent thread ~A~%" *current-thread
*)
304 (assert (eql (mutex-value lock
) nil
))
305 (with-recursive-lock (lock)
306 (condition-notify queue
))
309 (let ((mutex (make-mutex :name
"contended")))
311 (let ((me *current-thread
*))
315 (assert (eql (mutex-value mutex
) me
)))
316 (assert (not (eql (mutex-value mutex
) me
))))
317 (format t
"done ~A~%" *current-thread
*))))
318 (let ((kid1 (make-thread #'run
))
319 (kid2 (make-thread #'run
)))
320 (format t
"contention ~A ~A~%" kid1 kid2
)
321 (wait-for-threads (list kid1 kid2
)))))
325 (defmacro raises-timeout-p
(&body body
)
326 `(handler-case (progn (progn ,@body
) nil
)
327 (sb-ext:timeout
() t
)))
329 (with-test (:name
(:semaphore
:wait-forever
))
330 (let ((sem (make-semaphore :count
0)))
331 (assert (raises-timeout-p
332 (sb-ext:with-timeout
0.1
333 (wait-on-semaphore sem
))))))
335 (with-test (:name
(:semaphore
:initial-count
))
336 (let ((sem (make-semaphore :count
1)))
337 (sb-ext:with-timeout
0.1
338 (wait-on-semaphore sem
))))
340 (with-test (:name
(:semaphore
:wait-then-signal
))
341 (let ((sem (make-semaphore))
343 (make-thread (lambda ()
346 (signal-semaphore sem
)))
347 (wait-on-semaphore sem
)
348 (assert signalled-p
)))
350 (with-test (:name
(:semaphore
:signal-then-wait
))
351 (let ((sem (make-semaphore))
353 (make-thread (lambda ()
354 (signal-semaphore sem
)
355 (setq signalled-p t
)))
356 (loop until signalled-p
)
357 (wait-on-semaphore sem
)
358 (assert signalled-p
)))
360 (with-test (:name
(:semaphore
:multiple-signals
))
361 (let* ((sem (make-semaphore :count
5))
362 (threads (loop repeat
20
363 collect
(make-thread (lambda ()
364 (wait-on-semaphore sem
))))))
365 (flet ((count-live-threads ()
366 (count-if #'thread-alive-p threads
)))
368 (assert (= 15 (count-live-threads)))
369 (signal-semaphore sem
10)
371 (assert (= 5 (count-live-threads)))
372 (signal-semaphore sem
3)
374 (assert (= 2 (count-live-threads)))
375 (signal-semaphore sem
4)
377 (assert (= 0 (count-live-threads))))))
379 (format t
"~&semaphore tests done~%")
381 (defun test-interrupt (function-to-interrupt &optional quit-p
)
382 (let ((child (make-thread function-to-interrupt
)))
383 ;;(format t "gdb ./src/runtime/sbcl ~A~%attach ~A~%" child child)
385 (format t
"interrupting child ~A~%" child
)
386 (interrupt-thread child
388 (format t
"child pid ~A~%" *current-thread
*)
389 (when quit-p
(sb-ext:quit
))))
393 ;; separate tests for (a) interrupting Lisp code, (b) C code, (c) a syscall,
394 ;; (d) waiting on a lock, (e) some code which we hope is likely to be
397 (let ((child (test-interrupt (lambda () (loop))))) (terminate-thread child
))
399 (test-interrupt #'loop-forever
:quit
)
401 (let ((child (test-interrupt (lambda () (loop (sleep 2000))))))
402 (terminate-thread child
)
403 (wait-for-threads (list child
)))
405 (let ((lock (make-mutex :name
"loctite"))
408 (setf child
(test-interrupt
411 (assert (eql (mutex-value lock
) *current-thread
*)))
412 (assert (not (eql (mutex-value lock
) *current-thread
*)))
414 ;;hold onto lock for long enough that child can't get it immediately
416 (interrupt-thread child
(lambda () (format t
"l ~A~%" (mutex-value lock
))))
417 (format t
"parent releasing lock~%"))
418 (terminate-thread child
)
419 (wait-for-threads (list child
)))
421 (format t
"~&locking test done~%")
423 (defun alloc-stuff () (copy-list '(1 2 3 4 5)))
426 (let ((thread (sb-thread:make-thread
(lambda () (loop (alloc-stuff))))))
428 (loop repeat
4 collect
429 (sb-thread:make-thread
432 (sleep (random 0.1d0
))
435 (sb-thread:interrupt-thread thread
(lambda ()))))))))
436 (wait-for-threads killers
)
437 (sb-thread:terminate-thread thread
)
438 (wait-for-threads (list thread
))))
441 (format t
"~&multi interrupt test done~%")
443 (let ((c (make-thread (lambda () (loop (alloc-stuff))))))
444 ;; NB this only works on x86: other ports don't have a symbol for
445 ;; pseudo-atomic atomicity
447 (sleep (random 0.1d0
))
450 (princ ".") (force-output)
451 (assert (thread-alive-p *current-thread
*))
453 (not (logbitp 0 SB-KERNEL
:*PSEUDO-ATOMIC-BITS
*))))))
455 (wait-for-threads (list c
)))
457 (format t
"~&interrupt test done~%")
459 (defstruct counter
(n 0 :type sb-vm
:word
))
460 (defvar *interrupt-counter
* (make-counter))
462 (declaim (notinline check-interrupt-count
))
463 (defun check-interrupt-count (i)
464 (declare (optimize (debug 1) (speed 1)))
465 ;; This used to lose if eflags were not restored after an interrupt.
466 (unless (typep i
'fixnum
)
467 (error "!!!!!!!!!!!")))
469 (let ((c (make-thread
471 (handler-bind ((error #'(lambda (cond)
474 most-positive-fixnum
))))
475 (loop (check-interrupt-count (counter-n *interrupt-counter
*))))))))
476 (let ((func (lambda ()
479 (sb-ext:atomic-incf
(counter-n *interrupt-counter
*)))))
480 (setf (counter-n *interrupt-counter
*) 0)
482 (sleep (random 0.1d0
))
483 (interrupt-thread c func
))
484 (loop until
(= (counter-n *interrupt-counter
*) 100) do
(sleep 0.1))
486 (wait-for-threads (list c
))))
488 (format t
"~&interrupt count test done~%")
490 (defvar *runningp
* nil
)
492 (with-test (:name
(:interrupt-thread
:no-nesting
))
493 (let ((thread (sb-thread:make-thread
497 (declare (special runningp
))
499 (sb-thread:interrupt-thread thread
501 (let ((*runningp
* t
))
504 (sb-thread:interrupt-thread thread
506 (throw 'xxx
*runningp
*)))
507 (assert (not (sb-thread:join-thread thread
)))))
509 (with-test (:name
(:interrupt-thread
:nesting
))
510 (let ((thread (sb-thread:make-thread
514 (declare (special runningp
))
516 (sb-thread:interrupt-thread thread
518 (let ((*runningp
* t
))
519 (sb-sys:with-interrupts
522 (sb-thread:interrupt-thread thread
524 (throw 'xxx
*runningp
*)))
525 (assert (sb-thread:join-thread thread
))))
528 (make-thread (lambda ()
530 (sb-ext:gc
) (princ "\\") (force-output))
532 (make-thread (lambda ()
535 (princ "/") (force-output))
538 (when (and a-done b-done
) (return))
543 (defun waste (&optional
(n 100000))
544 (loop repeat n do
(make-string 16384)))
546 (loop for i below
100 do
549 (sb-thread:make-thread
557 (defparameter *aaa
* nil
)
558 (loop for i below
100 do
561 (sb-thread:make-thread
563 (let ((*aaa
* (waste)))
565 (let ((*aaa
* (waste)))
569 (format t
"~&gc test done~%")
571 ;; this used to deadlock on session-lock
572 (sb-thread:make-thread
(lambda () (sb-ext:gc
)))
573 ;; expose thread creation races by exiting quickly
574 (sb-thread:make-thread
(lambda ()))
576 (defun exercise-syscall (fn reference-errno
)
577 (sb-thread:make-thread
581 (let ((errno (sb-unix::get-errno
)))
582 (sleep (random 0.1d0
))
583 (unless (eql errno reference-errno
)
584 (format t
"Got errno: ~A (~A) instead of ~A~%"
589 (sb-ext:quit
:unix-status
1)))))))
591 ;; (nanosleep -1 0) does not fail on FreeBSD
593 (nanosleep-errno (progn
594 (sb-unix:nanosleep -
1 0)
595 (sb-unix::get-errno
)))
598 :if-does-not-exist nil
)
599 (sb-unix::get-errno
)))
603 (exercise-syscall (lambda () (sb-unix:nanosleep -
1 0)) nanosleep-errno
)
604 (exercise-syscall (lambda () (open "no-such-file"
605 :if-does-not-exist nil
))
607 (sb-thread:make-thread
(lambda () (loop (sb-ext:gc
) (sleep 1)))))))
609 (princ "terminating threads")
610 (dolist (thread threads
)
611 (sb-thread:terminate-thread thread
)))
613 (format t
"~&errno test done~%")
616 (let ((thread (sb-thread:make-thread
(lambda () (sleep 0.1)))))
617 (sb-thread:interrupt-thread
620 (assert (find-restart 'sb-thread
:terminate-thread
))))))
624 (format t
"~&thread startup sigmask test done~%")
626 ;; FIXME: What is this supposed to test?
627 (sb-debug::enable-debugger
)
628 (let* ((main-thread *current-thread
*)
630 (make-thread (lambda ()
632 (interrupt-thread main-thread
637 (interrupt-thread main-thread
#'continue
))
638 :name
"interruptor")))
639 (with-session-lock (*session
*)
641 (loop while
(thread-alive-p interruptor-thread
)))
643 (format t
"~&session lock test done~%")
647 (loop for i below
100 collect
648 (sb-thread:make-thread
(lambda ())))))
650 (format t
"~&creation test done~%")
652 ;; interrupt handlers are per-thread with pthreads, make sure the
653 ;; handler installed in one thread is global
654 (sb-thread:make-thread
656 (sb-ext:run-program
"sleep" '("1") :search t
:wait nil
)))
658 ;;;; Binding stack safety
660 (defparameter *x
* nil
)
661 (defparameter *n-gcs-requested
* 0)
662 (defparameter *n-gcs-done
* 0)
665 (defun make-something-big ()
666 (let ((x (make-string 32000)))
668 (let ((counter counter
))
669 (sb-ext:finalize x
(lambda () (format t
" ~S" counter
)
672 (defmacro wait-for-gc
()
674 (incf *n-gcs-requested
*)
675 (loop while
(< *n-gcs-done
* *n-gcs-requested
*))))
678 (loop until
(< *n-gcs-done
* *n-gcs-requested
*))
684 (defun exercise-binding ()
686 (let ((*x
* (make-something-big)))
688 ;; at this point the binding stack looks like this:
689 ;; NO-TLS-VALUE-MARKER, *x*, SOMETHING, *x*
692 ;; sig_stop_for_gc_handler binds FREE_INTERRUPT_CONTEXT_INDEX. By
693 ;; now SOMETHING is gc'ed and the binding stack looks like this: 0,
694 ;; 0, SOMETHING, 0 (because the symbol slots are zeroed on
695 ;; unbinding but values are not).
697 ;; bump bsp as if a BIND had just started
698 (incf sb-vm
::*binding-stack-pointer
* 2)
700 (decf sb-vm
::*binding-stack-pointer
* 2))))
702 (with-test (:name
(:binding-stack-gc-safety
))
706 (push (sb-thread:make-thread
#'exercise-binding
) threads
)
707 (push (sb-thread:make-thread
(lambda ()
713 (mapc #'sb-thread
:terminate-thread threads
))))
715 (format t
"~&binding test done~%")
719 (defvar *errors
* nil
)
723 (format t
"~&oops: ~A in ~S~%" e
*current-thread
*)
727 (with-test (:name
(:unsynchronized-hash-table
))
728 ;; We expect a (probable) error here: parellel readers and writers
729 ;; on a hash-table are not expected to work -- but we also don't
730 ;; expect this to corrupt the image.
731 (let* ((hash (make-hash-table))
733 (threads (list (sb-thread:make-thread
736 (handler-bind ((serious-condition 'oops
))
738 ;;(princ "1") (force-output)
739 (setf (gethash (random 100) hash
) 'h
)))))
741 (sb-thread:make-thread
744 (handler-bind ((serious-condition 'oops
))
746 ;;(princ "2") (force-output)
747 (remhash (random 100) hash
)))))
749 (sb-thread:make-thread
752 (handler-bind ((serious-condition 'oops
))
755 (sb-ext:gc
:full t
)))))
756 :name
"collector"))))
759 (mapc #'sb-thread
:terminate-thread threads
))))
761 (format t
"~&unsynchronized hash table test done~%")
763 (with-test (:name
(:synchronized-hash-table
))
764 (let* ((hash (make-hash-table :synchronized t
))
766 (threads (list (sb-thread:make-thread
769 (handler-bind ((serious-condition 'oops
))
771 ;;(princ "1") (force-output)
772 (setf (gethash (random 100) hash
) 'h
)))))
774 (sb-thread:make-thread
777 (handler-bind ((serious-condition 'oops
))
779 ;;(princ "2") (force-output)
780 (remhash (random 100) hash
)))))
782 (sb-thread:make-thread
785 (handler-bind ((serious-condition 'oops
))
788 (sb-ext:gc
:full t
)))))
789 :name
"collector"))))
792 (mapc #'sb-thread
:terminate-thread threads
))
793 (assert (not *errors
*))))
795 (format t
"~&synchronized hash table test done~%")
797 (with-test (:name
(:hash-table-parallel-readers
))
798 (let ((hash (make-hash-table))
801 do
(setf (gethash (random 100) hash
) 'xxx
))
802 (let ((threads (list (sb-thread:make-thread
805 (handler-bind ((serious-condition 'oops
))
807 until
(eq t
(gethash (random 100) hash
))))))
809 (sb-thread:make-thread
812 (handler-bind ((serious-condition 'oops
))
814 until
(eq t
(gethash (random 100) hash
))))))
816 (sb-thread:make-thread
819 (handler-bind ((serious-condition 'oops
))
821 until
(eq t
(gethash (random 100) hash
))))))
823 (sb-thread:make-thread
826 (handler-bind ((serious-condition 'oops
))
829 (sb-ext:gc
:full t
)))))
830 :name
"collector"))))
833 (mapc #'sb-thread
:terminate-thread threads
))
834 (assert (not *errors
*)))))
836 (format t
"~&multiple reader hash table test done~%")
838 (with-test (:name
(:hash-table-single-accessor-parallel-gc
))
839 (let ((hash (make-hash-table))
841 (let ((threads (list (sb-thread:make-thread
843 (handler-bind ((serious-condition 'oops
))
845 (let ((n (random 100)))
848 (setf (gethash n hash
) 'h
))))))
850 (sb-thread:make-thread
852 (handler-bind ((serious-condition 'oops
))
855 (sb-ext:gc
:full t
))))
856 :name
"collector"))))
859 (mapc #'sb-thread
:terminate-thread threads
))
860 (assert (not *errors
*)))))
862 (format t
"~&single accessor hash table test~%")
864 #|
;; a cll post from eric marsden
866 |
(setq *debugger-hook
*
867 |
(lambda (condition old-debugger-hook
)
868 |
(debug:backtrace
10)
869 |
(unix:unix-exit
2)))
871 |
(mp::start-sigalrm-yield
)
872 |
(flet ((roomy () (loop (with-output-to-string (*standard-output
*) (room)))))
873 |
(mp:make-process
#'roomy
)
874 |
(mp:make-process
#'roomy
)))
877 ;;; KLUDGE: No deadlines while waiting on lutex-based condition variables. This test
880 (with-test (:name
(:condition-variable
:wait-multiple
))
882 (let ((waitqueue (sb-thread:make-waitqueue
:name
"Q"))
883 (mutex (sb-thread:make-mutex
:name
"M"))
887 (let ((threads (loop repeat
200
889 (sb-thread:make-thread
892 (sb-sys:with-deadline
(:seconds
0.01)
893 (sb-thread:with-mutex
(mutex)
894 (sb-thread:condition-wait waitqueue
897 (sb-sys:deadline-timeout
(c)
898 (declare (ignore c
)))))))))
899 (mapc #'sb-thread
:join-thread threads
)
900 (assert (not failedp
))))))
902 (with-test (:name
(:condition-variable
:notify-multiple
))
903 (flet ((tester (notify-fun)
904 (let ((queue (make-waitqueue :name
"queue"))
905 (lock (make-mutex :name
"lock"))
910 (format t
"condition-wait ~a~%" x
)
912 (condition-wait queue lock
)
913 (format t
"woke up ~a~%" x
)
916 (let ((threads (loop for x from
1 to
10
919 (sb-thread:make-thread
(lambda ()
923 (funcall notify-fun queue
))
925 (mapcar #'terminate-thread threads
)
926 ;; Check that all threads woke up at least once
927 (assert (= (length (remove-duplicates data
)) 10)))))))
928 (tester (lambda (queue)
929 (format t
"~&(condition-notify queue 10)~%")
931 (condition-notify queue
10)))
932 (tester (lambda (queue)
933 (format t
"~&(condition-broadcast queue)~%")
935 (condition-broadcast queue
)))))
937 (format t
"waitqueue wakeup tests done~%")
939 (with-test (:name
(:mutex
:finalization
))
942 (setf a
(make-mutex)))))
944 (format t
"mutex finalization test done~%")
946 ;;; Check that INFO is thread-safe, at least when we're just doing reads.
948 (let* ((symbols (loop repeat
10000 collect
(gensym)))
949 (functions (loop for
(symbol . rest
) on symbols
950 for next
= (car rest
)
951 for fun
= (let ((next next
))
954 (funcall next
(1- n
))
956 do
(setf (symbol-function symbol
) fun
)
958 (defun infodb-test ()
959 (funcall (car functions
) 9999)))
961 (with-test (:name
(:infodb
:read
))
963 (threads (loop for i from
0 to
10
964 collect
(sb-thread:make-thread
969 (let ((n (infodb-test)))
972 (format t
"N != 0 (~A)~%" n
)
973 (sb-ext:quit
)))))))))
974 (wait-for-threads threads
)
977 (format t
"infodb test done~%")
979 (with-test (:name
(:backtrace
))
980 ;; Printing backtraces from several threads at once used to hang the
981 ;; whole SBCL process (discovered by accident due to a timer.impure
982 ;; test misbehaving). The cause was that packages weren't even
983 ;; thread-safe for only doing FIND-SYMBOL, and while printing
984 ;; backtraces a loot of symbol lookups need to be done due to
986 (let* ((threads (loop repeat
10
987 collect
(sb-thread:make-thread
990 (with-output-to-string (*debug-io
*)
991 (sb-debug::backtrace
10))))))))
992 (wait-for-threads threads
)))
994 (format t
"backtrace test done~%")
996 (format t
"~&starting gc deadlock test: WARNING: THIS TEST WILL HANG ON FAILURE!~%")
998 (with-test (:name
(:gc-deadlock
))
999 ;; Prior to 0.9.16.46 thread exit potentially deadlocked the
1000 ;; GC due to *all-threads-lock* and session lock. On earlier
1001 ;; versions and at least on one specific box this test is good enough
1002 ;; to catch that typically well before the 1500th iteration.
1009 (when (zerop (mod i
100))
1014 (sb-thread:make-thread
1016 (sleep (random 0.001)))
1017 :name
(list :sleep i
))
1018 (sb-thread:make-thread
1020 ;; KLUDGE: what we are doing here is explicit,
1021 ;; but the same can happen because of a regular
1022 ;; MAKE-THREAD or LIST-ALL-THREADS, and various
1023 ;; session functions.
1024 (sb-thread::with-all-threads-lock
1025 (sb-thread::with-session-lock
(sb-thread::*session
*)
1027 :name
(list :gc i
)))
1029 (format t
"~%error creating thread ~D: ~A -- backing off for retry~%" i e
)
1033 (format t
"~&gc deadlock test done~%")
1035 (let ((count (make-array 8 :initial-element
0)))
1036 (defun closure-one ()
1037 (declare (optimize safety
))
1038 (values (incf (aref count
0)) (incf (aref count
1))
1039 (incf (aref count
2)) (incf (aref count
3))
1040 (incf (aref count
4)) (incf (aref count
5))
1041 (incf (aref count
6)) (incf (aref count
7))))
1042 (defun no-optimizing-away-closure-one ()
1043 (setf count
(make-array 8 :initial-element
0))))
1048 (let ((one (make-box))
1051 (defun closure-two ()
1052 (declare (optimize safety
))
1053 (values (incf (box-count one
)) (incf (box-count two
)) (incf (box-count three
))))
1054 (defun no-optimizing-away-closure-two ()
1055 (setf one
(make-box)
1059 (with-test (:name
(:funcallable-instances
))
1060 ;; the funcallable-instance implementation used not to be threadsafe
1061 ;; against setting the funcallable-instance function to a closure
1062 ;; (because the code and lexenv were set separately).
1063 (let ((fun (sb-kernel:%make-funcallable-instance
0))
1065 (setf (sb-kernel:funcallable-instance-fun fun
) #'closure-one
)
1067 (loop (setf (sb-kernel:funcallable-instance-fun fun
) #'closure-one
)
1068 (setf (sb-kernel:funcallable-instance-fun fun
) #'closure-two
)))
1070 (handler-case (loop (funcall fun
))
1071 (serious-condition (c) (setf condition c
)))))
1072 (let ((changer (make-thread #'changer
))
1073 (test (make-thread #'test
)))
1076 ;; The two closures above are fairly carefully crafted
1077 ;; so that if given the wrong lexenv they will tend to
1078 ;; do some serious damage, but it is of course difficult
1079 ;; to predict where the various bits and pieces will be
1080 ;; allocated. Five seconds failed fairly reliably on
1081 ;; both my x86 and x86-64 systems. -- CSR, 2006-09-27.
1082 (sb-ext:with-timeout
5
1083 (wait-for-threads (list test
)))
1084 (error "~@<test thread got condition:~2I~_~A~@:>" condition
))
1086 (terminate-thread changer
)
1087 (terminate-thread test
)
1088 (wait-for-threads (list changer test
))))))))
1090 (format t
"~&funcallable-instance test done~%")
1092 (defun random-type (n)
1093 `(integer ,(random n
) ,(+ n
(random n
))))
1095 (defun subtypep-hash-cache-test ()
1097 (let ((type1 (random-type 500))
1098 (type2 (random-type 500)))
1099 (let ((a (subtypep type1 type2
)))
1101 (assert (eq (subtypep type1 type2
) a
))))))
1105 (with-test (:name
'(:hash-cache
:subtypep
))
1107 (sb-thread:make-thread
#'subtypep-hash-cache-test
)))
1108 (format t
"hash-cache tests done~%")
1110 ;;;; BLACK BOX TESTS
1112 (in-package :cl-user
)
1113 (use-package :test-util
)
1114 (use-package "ASSERTOID")
1116 (format t
"parallel defclass test -- WARNING, WILL HANG ON FAILURE!~%")
1117 (with-test (:name
:parallel-defclass
)
1118 (defclass test-1
() ((a :initform
:orig-a
)))
1119 (defclass test-2
() ((b :initform
:orig-b
)))
1120 (defclass test-3
(test-1 test-2
) ((c :initform
:orig-c
)))
1122 (d1 (sb-thread:make-thread
(lambda ()
1124 do
(defclass test-1
() ((a :initform
:new-a
)))
1128 (d2 (sb-thread:make-thread
(lambda ()
1130 do
(defclass test-2
() ((b :initform
:new-b
)))
1134 (d3 (sb-thread:make-thread
(lambda ()
1136 do
(defclass test-3
(test-1 test-2
) ((c :initform
:new-c
)))
1140 (i (sb-thread:make-thread
(lambda ()
1142 do
(let ((i (make-instance 'test-3
)))
1143 (assert (member (slot-value i
'a
) '(:orig-a
:new-a
)))
1144 (assert (member (slot-value i
'b
) '(:orig-b
:new-b
)))
1145 (assert (member (slot-value i
'c
) '(:orig-c
:new-c
))))
1149 (format t
"~%sleeping!~%")
1151 (format t
"~%stopping!~%")
1154 (sb-thread:join-thread th
)
1155 (format t
"~%joined ~S~%" (sb-thread:thread-name th
)))
1156 (list d1 d2 d3 i
))))
1157 (format t
"parallel defclass test done~%")