Summary

numbers-string-conversion-test fails for windows

Metadata

Description

One case from the numbers-string-conversion test fails:

diff --git a/tests/numbers-string-conversion-tests.scm b/tests/numbers-string-conversion-tests.scm index 09d8ee8..7abfd9d 100644 --- a/tests/numbers-string-conversion-tests.scm +++ b/tests/numbers-string-conversion-tests.scm @@ -209,7 +209,8 @@

 ("-1/2" (- (/ 1 2)) "-0.5" "-.5" "-500.0e-3")
 ("1/-2" #f)
 ("10/0" +inf.0 "+inf.0")

- ("0/10" 0.0 "0.0") +;XXX fails on Windows +; ("0/10" 0.0 "0.0")

 ("#e0/10" 0 "0")
 ("#e1#/2" 5 "5")
 ("#e1/2#" #f)

Can I just add a "0." to the result list in the line above?

Changes and comments

[2012-05-04 13:13:44 UTC] sjamaan changed status from new to assigned

[2012-05-04 13:13:44 UTC] sjamaan changed owner from sjamaan to felix

[2012-05-04 13:13:44 UTC] sjamaan wrote:

Sure, that's acceptable since "0." is valid numeric syntax, I just didn't think about adding it. you might also add ".0" just in case :)

[2012-05-10 11:25:47 UTC] felix changed status from assigned to closed

[2012-05-10 11:25:47 UTC] felix set resolution to fixed

[2012-05-10 11:25:47 UTC] felix wrote:

I have added an entry and pushed the changes.

[2012-09-24 21:47:48 UTC] felix changed milestone from 4.8.0 to 4.9.0

[2012-09-24 21:47:48 UTC] felix wrote:

Milestone 4.8.0 deleted