1.0.27.30: minor octets.lisp cleanup
[sbcl.git] / tests / float.pure.lisp
index 5140bbd..e1aabae 100644 (file)
 (funcall (compile nil '(lambda () (tan (tan (round 0))))))
 
 (with-test (:name (:addition-overflow :bug-372)
-            :fails-on '(or :ppc :darwin (and :x86 (or :netbsd :openbsd))))
+            :fails-on '(or :ppc :darwin (and (or :x86 :x86-64)
+                                             (or :netbsd :openbsd))))
   (assert (typep (nth-value
                   1
                   (ignore-errors
   (assert (eql 2567.6046442221327d0
                (log (loop for n from 1 to 1000 for f = 1 then (* f n)
                           finally (return f))
-                    10d0))))
+                    10d0)))
+  ;; both ways
+  (assert (eql (log 123123123.0d0 10) (log 123123123 10.0d0))))
 
 (with-test (:name :log-base-zero-return-type)
   (assert (eql 0.0f0 (log 123 (eval 0))))