1.0.34.16: Test case for ROUND brokenness
authorChristophe Rhodes <csr21@cantab.net>
Sat, 30 Jan 2010 21:30:50 +0000 (21:30 +0000)
committerChristophe Rhodes <csr21@cantab.net>
Sat, 30 Jan 2010 21:30:50 +0000 (21:30 +0000)
tests/compiler.pure.lisp
version.lisp-expr

index de92498..bb495bd 100644 (file)
       (:no-error (&rest values)
         (declare (ignore values))
         (error "no error")))))
+
+(with-test (:name :unary-round-type-derivation)
+  (let* ((src '(lambda (zone)
+                (multiple-value-bind (h m) (truncate (abs zone) 1.0)
+                  (round (* 60.0 m)))))
+         (fun (compile nil src)))
+    (assert (= (funcall fun 0.5) 30))))
index 8c7124e..d98563c 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.34.15"
+"1.0.34.16"