more restrictive test naming
[sbcl.git] / tests / compare-and-swap.impure.lisp
index b368f8c..e16e0cb 100644 (file)
@@ -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)))
     (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))