X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ffloat.pure.lisp;h=289360f6eb07618dc3807fd772efe2a7e4ecbce7;hb=f31bc323d5bfc205f94164b203833f35033df3cd;hp=eb1d5bcf48c1cb211a84093aba5f7c9f820251e7;hpb=f16e93459cd73b1884e3d576c95e422f8e8a000e;p=sbcl.git diff --git a/tests/float.pure.lisp b/tests/float.pure.lisp index eb1d5bc..289360f 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 :darwin) ;; 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 (and :x86 :netbsd))) + :fails-on '(or (and :ppc :openbsd) :darwin (and :x86 :netbsd))) (assert (typep (nth-value 1 (ignore-errors @@ -288,6 +288,7 @@ ;; The tests are extremely brittle and could be broken by any number of ;; back- or front-end optimisations. We should just keep the issue above ;; in mind at all times when working with SSE or similar instruction sets. +#+(or x86 x86-64) ;; No other platforms have SB-VM::TOUCH-OBJECT. (macrolet ((with-pinned-floats ((count type &rest names) &body body) "Force COUNT float values to be kept live (and hopefully in registers), fill a temporary register with noise, and execute BODY."