remove tests about exact ratinoals. r7rs doesn't require them.

This commit is contained in:
Yuichi Nishiwaki 2014-07-29 17:47:02 +09:00
parent d9958143e3
commit f639734cb1
1 changed files with 2 additions and 2 deletions

View File

@ -2124,10 +2124,10 @@
;; (test-numeric-syntax "#i+inf.0" +inf.0 "+inf.0" "+Inf.0")
;; (test-numeric-syntax "#i-inf.0" -inf.0 "-inf.0" "-Inf.0")
;; ;; Exact ratios
(test-numeric-syntax "1/2" (/ 1 2))
;; (test-numeric-syntax "1/2" (/ 1 2))
;; (test-numeric-syntax "#e1/2" (/ 1 2) "1/2")
(test-numeric-syntax "10/2" 5 "5")
(test-numeric-syntax "-1/2" (- (/ 1 2)))
;; (test-numeric-syntax "-1/2" (- (/ 1 2)))
(test-numeric-syntax "0/10" 0 "0")
;; (test-numeric-syntax "#e0/10" 0 "0")
;; (test-numeric-syntax "#i3/2" (/ 3.0 2.0) "1.5")