X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fprint.impure.lisp;h=8fd8badd7e302107e89113269165e42c6ced6d05;hb=179de85ab4fdff049c72ddb2767b93d838494b09;hp=5ab865c41499989ff6c05b4a00626f137f4f4592;hpb=b894cb41d869bda6ba0c54a491becc7bb58375c1;p=sbcl.git diff --git a/tests/print.impure.lisp b/tests/print.impure.lisp index 5ab865c..8fd8bad 100644 --- a/tests/print.impure.lisp +++ b/tests/print.impure.lisp @@ -268,11 +268,12 @@ ;;; bug 350: bignum printing so memory-hungry that heap runs out ;;; -- just don't stall here forever on a slow box -(handler-case - (with-timeout 10 - (print (ash 1 1000000))) - (timeout () - (print 'timeout!))) +(with-test (:name bug-350) + (handler-case + (with-timeout 10 + (print (ash 1 1000000))) + (timeout () + (print 'timeout!)))) ;;; bug 371: bignum print/read inconsistency (defvar *bug-371* -7043009959286724629649270926654940933664689003233793014518979272497911394287216967075767325693021717277238746020477538876750544587281879084559996466844417586093291189295867052594478662802691926547232838591510540917276694295393715934079679531035912244103731582711556740654671309980075069010778644542022/670550434139267031632063192770201289106737062379324644110801846820471752716238484923370056920388400273070254958650831435834503195629325418985020030706879602898158806736813101434594805676212779217311897830937606064579213895527844045511878668289820732425014254579493444623868748969110751636786165152601) @@ -635,4 +636,13 @@ (assert (raises-error? (format nil "~-2a" 1))) (assert (raises-error? (format nil "~,0a" 1)))) +(with-test (:name :bug-905817) + ;; The bug manifests itself in an endless loop in FORMAT. + ;; Correct behaviour is to signal an error. + (handler-case + (with-timeout 5 + (assert (raises-error? (format nil "e~8,0s" 12395)))) + (timeout () + (error "Endless loop in FORMAT")))) + ;;; success