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 (defpackage :thread-test
17 (:use
:cl
:sb-thread
))
19 (in-package :thread-test
)
21 (use-package :test-util
)
23 ;;; Terminating a thread that's waiting for the terminal.
26 (let ((thread (make-thread (lambda ()
27 (sb-thread::get-foreground
)))))
29 (assert (thread-alive-p thread
))
30 (terminate-thread thread
)
32 (assert (not (thread-alive-p thread
))))
34 ;;; Condition-wait should not be interruptible under WITHOUT-INTERRUPTS
37 (with-test (:name without-interrupts
+condition-wait
39 (let* ((lock (make-mutex))
40 (queue (make-waitqueue))
41 (thread (make-thread (lambda ()
42 (sb-sys:without-interrupts
44 (condition-wait queue lock
)))))))
46 (assert (thread-alive-p thread
))
47 (terminate-thread thread
)
49 (assert (thread-alive-p thread
))
50 (condition-notify queue
)
52 (assert (not (thread-alive-p thread
)))))
54 ;;; GET-MUTEX should not be interruptible under WITHOUT-INTERRUPTS
57 (with-test (:name without-interrupts
+get-mutex
59 (let* ((lock (make-mutex))
60 (foo (get-mutex lock
))
62 (thread (make-thread (lambda ()
63 (sb-sys:without-interrupts
67 (assert (thread-alive-p thread
))
68 (terminate-thread thread
)
70 (assert (thread-alive-p thread
))
73 (assert (not (thread-alive-p thread
)))
74 (assert (eq :aborted
(join-thread thread
:default
:aborted
)))