X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ffloat.pure.lisp;h=be2a6073790023a5713003ddd28a24c58c88a156;hb=079ef9dad558ca07cb8178ef428bf738112174fa;hp=ad9b77b107cb4f1d90bf4121741ab68bc75cd9dd;hpb=a163c70e2bef35bf482a785dbfd9c545b4fcd555;p=sbcl.git diff --git a/tests/float.pure.lisp b/tests/float.pure.lisp index ad9b77b..be2a607 100644 --- a/tests/float.pure.lisp +++ b/tests/float.pure.lisp @@ -91,7 +91,9 @@ least-positive-double-float)) (assert (= 0.0 (scale-float 1.0 most-negative-fixnum))) (assert (= 0.0d0 (scale-float 1.0d0 (1- most-negative-fixnum)))) -(assert (raises-error? (scale-float 1.0 most-positive-fixnum) - floating-point-overflow)) -(assert (raises-error? (scale-float 1.0d0 (1+ most-positive-fixnum)) - floating-point-overflow)) +#-darwin ;; bug 372 +(progn + (assert (raises-error? (scale-float 1.0 most-positive-fixnum) + floating-point-overflow)) + (assert (raises-error? (scale-float 1.0d0 (1+ most-positive-fixnum)) + floating-point-overflow)))