X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Finterface.pure.lisp;h=285ddcb572006fba41b526764ba540784ddb3dd7;hb=961c7076f5fba67ddba0e12dd131104834348b1a;hp=df8ee36cf6f9045571a3b96473e97cd207fbfce7;hpb=71d60093b1a9d80c4de6c5f51c6783eef86968d9;p=sbcl.git diff --git a/tests/interface.pure.lisp b/tests/interface.pure.lisp index df8ee36..285ddcb 100644 --- a/tests/interface.pure.lisp +++ b/tests/interface.pure.lisp @@ -57,10 +57,11 @@ (assert (not (special-operator-p 'declare))) ;;; WITH-TIMEOUT should accept more than one form in its body. -(handler-bind ((sb-ext:timeout #'continue)) - (sb-ext:with-timeout 3 - (sleep 2) - (sleep 2))) +(with-test (:name :with-timeout-forms) + (handler-bind ((sb-ext:timeout #'continue)) + (sb-ext:with-timeout 3 + (sleep 2) + (sleep 2)))) ;;; DOCUMENTATION should return nil, not signal slot-unbound (documentation 'fixnum 'type)