Raymond Toy pushed to branch issue-293-restart-on-reader-fp-overflow at cmucl / cmucl
Commits: 875638b6 by Raymond Toy at 2024-04-07T11:16:53-07:00 Update expected FP underflow message in reader
We changed the message string for FP underflows in the reader so we need to update the test with this new string.
- - - - - a7b57151 by Raymond Toy at 2024-04-07T11:22:19-07:00 Merge branch 'issue-275b-signal-float-underflow' into issue-293-restart-on-reader-fp-overflow
- - - - -
1 changed file:
- tests/float.lisp
Changes:
===================================== tests/float.lisp ===================================== @@ -231,7 +231,7 @@ (:tag :issues) (lisp::with-float-traps-enabled (:underflow) ;; The expected string comes from make-float-aux. - (let ((expected "Floating point underflow when reading ~S")) + (let ((expected "Floating point underflow when reading ~S: ~S")) (flet ((test-reader-underflow (string) ;; Test that the we got a reader-error when a number ;; would underflow and that the message says we got an
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/d9a8993608611d809179b37...