X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fprint.impure.lisp;h=2e5b39154a17309f8cf3558000eb92d1c6c9a003;hb=6f4c867e670a3c538b4072b824fa8026e9f2cbfe;hp=8fd8badd7e302107e89113269165e42c6ced6d05;hpb=3cd0a9aafc20ce12075f38ebaed86676c922fde2;p=sbcl.git diff --git a/tests/print.impure.lisp b/tests/print.impure.lisp index 8fd8bad..2e5b391 100644 --- a/tests/print.impure.lisp +++ b/tests/print.impure.lisp @@ -645,4 +645,8 @@ (timeout () (error "Endless loop in FORMAT")))) +(with-test (:name :format-type-check) + (assert (raises-error? (format nil "~r" 1.32) sb-format:format-error)) + (assert (raises-error? (format nil "~c" 1.32) sb-format:format-error))) + ;;; success