X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.impure.lisp;h=8914dda661ad49f5541efa1a7e414fd9aa384c61;hb=a51d83191034919bc76367268929e234d62164db;hp=5f9128f470159804deb97fd4fb9a6bbbe6757d75;hpb=0301f631b44b8b5b46e887982f98d5baa7b0e97a;p=sbcl.git diff --git a/tests/threads.impure.lisp b/tests/threads.impure.lisp index 5f9128f..8914dda 100644 --- a/tests/threads.impure.lisp +++ b/tests/threads.impure.lisp @@ -154,16 +154,16 @@ (sleep 3) (assert (not (thread-alive-p thread)))) -(with-test (:name '(:join-thread :nlx :default)) +(with-test (:name (:join-thread :nlx :default)) (let ((sym (gensym))) (assert (eq sym (join-thread (make-thread (lambda () (sb-ext:quit))) :default sym))))) -(with-test (:name '(:join-thread :nlx :error)) +(with-test (:name (:join-thread :nlx :error)) (raises-error? (join-thread (make-thread (lambda () (sb-ext:quit)))) join-thread-error)) -(with-test (:name '(:join-thread :multiple-values)) +(with-test (:name (:join-thread :multiple-values)) (assert (equal '(1 2 3) (multiple-value-list (join-thread (make-thread (lambda () (values 1 2 3)))))))) @@ -1331,7 +1331,7 @@ (format t "ok~%") (force-output)) -(with-test (:name '(:hash-cache :subtypep)) +(with-test (:name (:hash-cache :subtypep)) (dotimes (i 10) (sb-thread:make-thread #'subtypep-hash-cache-test))) (format t "hash-cache tests done~%")