X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Finterface.impure.lisp;h=6f697a50b1e7e4f1f48654c7284f131d0aef8e9a;hb=ab7aedfb1e4c0245814beb998e74e099b71092a6;hp=cdec3908c19cc321e405bdefbf45dd51fa03f850;hpb=c8eb86a40a6542b978ef34299ac5ab2601163ff4;p=sbcl.git diff --git a/tests/interface.impure.lisp b/tests/interface.impure.lisp index cdec390..6f697a5 100644 --- a/tests/interface.impure.lisp +++ b/tests/interface.impure.lisp @@ -113,15 +113,17 @@ (let ((s (with-output-to-string (s) (write-char #\x s) (describe i s)))) - (unless (and (char= #\x (char s 0)) - ;; one leading #\NEWLINE from FRESH-LINE or the like, no more - (char= #\newline (char s 1)) - (char/= #\newline (char s 2)) - ;; one trailing #\NEWLINE from TERPRI or the like, no more - (let ((n (length s))) - (and (char= #\newline (char s (- n 1))) - (char/= #\newline (char s (- n 2)))))) - (error "misbehavior in DESCRIBE of ~S" i)))) + (macrolet ((check (form) + `(or ,form + (error "misbehavior in DESCRIBE of ~S:~% ~S" i ',form)))) + (check (char= #\x (char s 0))) + ;; one leading #\NEWLINE from FRESH-LINE or the like, no more + (check (char= #\newline (char s 1))) + (check (char/= #\newline (char s 2))) + ;; one trailing #\NEWLINE from TERPRI or the like, no more + (let ((n (length s))) + (check (char= #\newline (char s (- n 1)))) + (check (char/= #\newline (char s (- n 2)))))))) ;;; Tests of documentation on types and classes @@ -239,5 +241,11 @@ #+sb-doc (with-test (:name (documentation built-in-function)) (assert (documentation 'cons 'function))) + +(with-test (:name :describe-generic-function-with-assumed-type) + ;; Signalled an error at one point + (flet ((zoo () (gogo))) + (defmethod gogo () nil) + (describe 'gogo))) ;;;; success