X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fdebug.impure.lisp;h=042763e3f26d1158afdd510154b1d6a7ebe60ead;hb=9aac8cfe0d3b3dd27b292e5661104221ddbd1bee;hp=f33a966784bcd75d89e56d171fbbdd5e4a121214;hpb=83659744f9caa97aa83eb562d872b1c0127403c0;p=sbcl.git diff --git a/tests/debug.impure.lisp b/tests/debug.impure.lisp index f33a966..042763e 100644 --- a/tests/debug.impure.lisp +++ b/tests/debug.impure.lisp @@ -455,6 +455,15 @@ (assert (search "returned 1" out)) (assert (search "returned 120" out)))) +(defun trace-and-fmakunbound-this (x) + x) + +(with-test (:name :bug-667657) + (trace trace-and-fmakunbound-this) + (fmakunbound 'trace-and-fmakunbound-this) + (untrace) + (assert (not (trace)))) + (with-test (:name :bug-414) (handler-bind ((warning #'error)) (load (compile-file "bug-414.lisp"))