guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-13-70-g37


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-13-70-g3740c78
Date: Thu, 18 Nov 2010 15:02:56 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=3740c788ac67f7867ef41165380cff877666d219

The branch, master has been updated
       via  3740c788ac67f7867ef41165380cff877666d219 (commit)
      from  e79caaa6c5c071746f1684b3d166c586297b3c6a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3740c788ac67f7867ef41165380cff877666d219
Author: Andy Wingo <address@hidden>
Date:   Thu Nov 18 16:06:46 2010 +0100

    numbers.test expects lower-case hexadecimals
    
    * test-suite/tests/numbers.test ("number->string"): Expect lower-case
      hexidecimals.

-----------------------------------------------------------------------

Summary of changes:
 test-suite/tests/numbers.test |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/test-suite/tests/numbers.test b/test-suite/tests/numbers.test
index 3432d7a..43a1a90 100644
--- a/test-suite/tests/numbers.test
+++ b/test-suite/tests/numbers.test
@@ -1282,20 +1282,20 @@
     ;; or not.  It is clearly undesirable to have number->string to be
     ;; influenced by this.
 
-    (pass-if (string=? (number->string 35.25 36) "Z.9"))
+    (pass-if (string=? (number->string 35.25 36) "z.9"))
     (pass-if (or (string=? (number->string 0.25 2) "0.01")
                 (string=? (number->string 0.25 2) "0.010")))
-    (pass-if (string=? (number->string 255.0625 16) "FF.1"))
+    (pass-if (string=? (number->string 255.0625 16) "ff.1"))
     (pass-if (string=? (number->string (/ 1 3) 3) "1/10"))
 
     (pass-if (string=? (number->string 10) "10"))
-    (pass-if (string=? (number->string 10 11) "A"))
+    (pass-if (string=? (number->string 10 11) "a"))
     (pass-if (string=? (number->string 36 36) "10"))
     (pass-if (= (num->str->num 36 36) 36))
     (pass-if (= (string->number "z" 36) 35))
     (pass-if (= (string->number "Z" 36) 35))
     (pass-if (not (string->number "Z" 35)))
-    (pass-if (string=? (number->string 35 36) "Z"))
+    (pass-if (string=? (number->string 35 36) "z"))
     (pass-if (= (num->str->num 35 36) 35))
 
     ;; Numeric conversion from decimal is not precise, in its current


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]