X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.pure.lisp;h=fbffaaab68d5c3ec46c88404c1552e4537ee6392;hb=2ff0ff83dacac9fb25a31f5783b6ea8c0442bc2c;hp=8187b51f762d2cb308f0768a9dccfc9ea6038d03;hpb=9cbef67c0d16955fc77a555e7ad251d93e206524;p=sbcl.git diff --git a/tests/threads.pure.lisp b/tests/threads.pure.lisp index 8187b51..fbffaaa 100644 --- a/tests/threads.pure.lisp +++ b/tests/threads.pure.lisp @@ -20,6 +20,24 @@ (use-package :test-util) +(with-test (:name mutex-owner) + ;; Make sure basics are sane on unithreaded ports as well + (let ((mutex (make-mutex))) + (get-mutex mutex) + (assert (eq *current-thread* (mutex-value mutex))) + (handler-bind ((warning #'error)) + (release-mutex mutex)) + (assert (not (mutex-value mutex))))) + +(with-test (:name spinlock-owner) + ;; Make sure basics are sane on unithreaded ports as well + (let ((spinlock (sb-thread::make-spinlock))) + (sb-thread::get-spinlock spinlock) + (assert (eq *current-thread* (sb-thread::spinlock-value spinlock))) + (handler-bind ((warning #'error)) + (sb-thread::release-spinlock spinlock)) + (assert (not (sb-thread::spinlock-value spinlock))))) + ;;; Terminating a thread that's waiting for the terminal. #+sb-thread