X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ffloat.pure.lisp;h=7acc048897d6d8299b667abe8d00e129c763a6a7;hb=6bbc22725d3bf663726ed9adca544e39316364a6;hp=b179f60b4af6574668e99a8a2ba460e52fa03a4a;hpb=dd56f278be887a99552a847164386dddcaf4df46;p=sbcl.git diff --git a/tests/float.pure.lisp b/tests/float.pure.lisp index b179f60..7acc048 100644 --- a/tests/float.pure.lisp +++ b/tests/float.pure.lisp @@ -93,7 +93,7 @@ (assert (= 0.0d0 (scale-float 1.0d0 (1- most-negative-fixnum)))) (with-test (:name (:scale-float-overflow :bug-372) - :fails-on '(or :ppc :darwin)) ;; bug 372 + :fails-on '(or :ppc :darwin (and :x86 :openbsd))) ;; bug 372 (progn (assert (raises-error? (scale-float 1.0 most-positive-fixnum) floating-point-overflow)) @@ -125,7 +125,7 @@ (funcall (compile nil '(lambda () (tan (tan (round 0)))))) (with-test (:name (:addition-overflow :bug-372) - :fails-on '(or :ppc :darwin :mips (and :x86 :netbsd))) + :fails-on '(or :ppc :darwin (and :x86 (or :netbsd :openbsd)))) (assert (typep (nth-value 1 (ignore-errors @@ -159,7 +159,7 @@ (with-test (:name :nan-comparisons - :fails-on '(or :x86-64 :sparc :mips)) + :fails-on '(or :sparc :mips)) (sb-int:with-float-traps-masked (:invalid) (macrolet ((test (form) (let ((nform (subst '(/ 0.0 0.0) 'nan form)))