X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompare-and-swap.impure.lisp;h=e16e0cb86dc610e00a0a3f27c85b36be072db884;hb=a189a69454ef7635149319ae213b337f17c50d20;hp=b368f8c48292cd67707d7fc06a662182e1362a00;hpb=d8422b9967f465801891907396bcc5bfde0f3297;p=sbcl.git diff --git a/tests/compare-and-swap.impure.lisp b/tests/compare-and-swap.impure.lisp index b368f8c..e16e0cb 100644 --- a/tests/compare-and-swap.impure.lisp +++ b/tests/compare-and-swap.impure.lisp @@ -3,7 +3,7 @@ (defstruct xxx yyy) (macrolet ((test (init op) - `(with-test (:name (:cas :basics ,op)) + `(with-test (:name (:cas :basics ,(intern (symbol-name op) "KEYWORD"))) (let ((x ,init) (y (list 'foo)) (z (list 'bar))) @@ -431,7 +431,7 @@ (assert (eq :ok (cas bar :ok nil))) (assert (not (cas bar nil t))))) -(with-test (:name atomic-push +(with-test (:name :atomic-push :skipped-on '(not :sb-thread)) (let ((store (cons nil nil)) (n 100000))