X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fprint.impure.lisp;h=69ff13c75e331b3079c358ab3f7abca5e562336e;hb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;hp=725b1da4760e6f7803d6e09c5112b3815df27c2a;hpb=774a9c4b5d25cd90dcdefb20b8d8ca4485b4cb88;p=sbcl.git diff --git a/tests/print.impure.lisp b/tests/print.impure.lisp index 725b1da..69ff13c 100644 --- a/tests/print.impure.lisp +++ b/tests/print.impure.lisp @@ -125,5 +125,14 @@ ;;; before 0.8.0.66 it signalled UNBOUND-VARIABLE (write #(1 2 3) :pretty nil :readably t) +;;; another UNBOUND-VARIABLE, this time due to a bug in FORMATTER +;;; expanders. +(funcall (formatter "~@<~A~:*~A~:>") nil 3) + +;;; the PPC floating point backend was at one point sufficiently +;;; broken that this looped infinitely or caused segmentation +;;; violations through stack corruption. +(print 0.0001) + ;;; success (quit :unix-status 104)