X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fdebug.impure.lisp;h=c69015e9420a9949a2ae5c1a0a03e798c6c1c767;hb=3641e3c73615bffcdd9c014e6663d80935e985ef;hp=1804a084e060bb5cdab12e8a316a04996bc5a7ae;hpb=ed18d662d473336285e2594ad21239afe1bca105;p=sbcl.git diff --git a/tests/debug.impure.lisp b/tests/debug.impure.lisp index 1804a08..c69015e 100644 --- a/tests/debug.impure.lisp +++ b/tests/debug.impure.lisp @@ -823,4 +823,12 @@ (assert (verify-backtrace (lambda () (gf-dispatch-test/f 42)) '(((sb-pcl::gf-dispatch gf-dispatch-test/gf) 42))))) +(with-test (:name (:xep-arglist-clean-up :bug-1192929)) + (assert + (block nil + (handler-bind ((error (lambda (e) + (declare (ignore e)) + (return (< (length (car (sb-debug:backtrace-as-list 1))) 10))))) + (funcall (compile nil `(lambda (i) (declare ((mod 65536) i)) i)) nil))))) + (write-line "/debug.impure.lisp done")