Skip to content

Commit

Permalink
tests and NEWS for lp#308961
Browse files Browse the repository at this point in the history
  Also add a random FP read/print consistency tester.

  For now it skips denormalized double-floats due to bug 793774.
  • Loading branch information
nikodemus committed Jun 11, 2011
1 parent dafa18a commit bea5221
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ changes relative to sbcl-1.0.49:
are of the order of ARRAY-TOTAL-SIZE-LIMIT. (lp#787237)
* bug fix: the compiler no longer constant-folds NaNs in
MAKE-{SINGLE,DOUBLE}-FLOAT. (lp#486812)
* bug fix: FORMAT now handles floating point rounding correct, eg.
(format nil "~,1F" 0.01) => "0.0" instead of "0.01" as previously.
(lp#308961)

changes in sbcl-1.0.49 relative to sbcl-1.0.48:
* minor incompatible change: WITH-LOCKED-HASH-TABLE no longer disables
Expand Down
55 changes: 55 additions & 0 deletions tests/print.impure.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -507,4 +507,59 @@
((and warning (not style-warning)) ()
:warned)))))

(with-test (:name :bug-308961)
(assert (string= (format nil "~4,1F" 0.001) " 0.0"))
(assert (string= (format nil "~4,1@F" 0.001) "+0.0"))
(assert (string= (format nil "~E" 0.01) "1.e-2"))
(assert (string= (format nil "~G" 0.01) "1.00e-2")))

(with-test (:name (:fp-read/print-consistency single-float))
(let ((*random-state* (make-random-state t))
(oops))
(loop for f = most-positive-single-float then (/ f 2.0)
while (> f 0.0)
do (loop repeat 10
for fr = (random f)
do (unless (eql fr (read-from-string (prin1-to-string fr)))
(push fr oops)
(return))))
(loop for f = most-negative-single-float then (/ f 2.0)
while (< f -0.0)
do (loop repeat 10
for fr = (- (random (- f)))
do (unless (eql fr (read-from-string (prin1-to-string fr)))
(push fr oops)
(return))))
(when oops
(error "FP read/print inconsistencies:~%~:{ ~S => ~S~%~}"
(mapcar (lambda (f)
(list f (read-from-string (prin1-to-string f))))
oops)))))

(with-test (:name (:fp-read/print-consistency double-float))
(let ((*random-state* (make-random-state t))
(oops))
;; FIXME skipping denormalized floats due to bug 793774.
(loop for f = most-positive-double-float then (/ f 2d0)
while (> f 0d0)
do (loop repeat 10
for fr = (random f)
do (unless (float-denormalized-p fr)
(unless (eql fr (read-from-string (prin1-to-string fr)))
(push fr oops)
(return)))))
(loop for f = most-negative-double-float then (/ f 2d0)
while (< f -0d0)
do (loop repeat 10
for fr = (- (random (- f)))
do (unless (float-denormalized-p fr)
(unless (eql fr (read-from-string (prin1-to-string fr)))
(push fr oops)
(return)))))
(when oops
(error "FP read/print inconsistencies:~%~:{ ~S => ~S~%~}"
(mapcar (lambda (f)
(list f (read-from-string (prin1-to-string f))))
oops)))))

;;; success

0 comments on commit bea5221

Please sign in to comment.