guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-113-g60582


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-113-g60582b7
Date: Fri, 18 Mar 2011 10:25:04 +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=60582b7c2a495957012f9a20cd8691dc6307a850

The branch, stable-2.0 has been updated
       via  60582b7c2a495957012f9a20cd8691dc6307a850 (commit)
      from  e4612ff64201284167f71ac4c09ddb1959f66eb8 (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 60582b7c2a495957012f9a20cd8691dc6307a850
Author: Ludovic Courtès <address@hidden>
Date:   Fri Mar 18 11:24:51 2011 +0100

    Fix `i18n.test' when the German or Greek locales aren't available.
    
    * test-suite/tests/i18n.test (%german-utf8-locale, %greek-utf8-locale):
      New variables.
      (under-german-utf8-locale-or-unresolved,
      under-greek-utf8-locale-or-unresolved): Use them.

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

Summary of changes:
 test-suite/tests/i18n.test |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/test-suite/tests/i18n.test b/test-suite/tests/i18n.test
index ef71578..a5e418f 100644
--- a/test-suite/tests/i18n.test
+++ b/test-suite/tests/i18n.test
@@ -104,6 +104,16 @@
    (make-locale (list LC_CTYPE LC_COLLATE LC_NUMERIC LC_TIME)
                 %french-utf8-locale-name)))
 
+(define %german-utf8-locale
+  (false-if-exception
+   (make-locale LC_ALL
+                %german-utf8-locale-name)))
+
+(define %greek-utf8-locale
+  (false-if-exception
+   (make-locale LC_ALL
+                %greek-utf8-locale-name)))
+
 (define %turkish-utf8-locale
   (false-if-exception
    (make-locale LC_ALL
@@ -131,10 +141,10 @@
   (under-locale-or-unresolved %turkish-utf8-locale thunk))
 
 (define (under-german-utf8-locale-or-unresolved thunk)
-  (under-locale-or-unresolved %german-utf8-locale-name thunk))
+  (under-locale-or-unresolved %german-utf8-locale thunk))
 
 (define (under-greek-utf8-locale-or-unresolved thunk)
-  (under-locale-or-unresolved %greek-utf8-locale-name thunk))
+  (under-locale-or-unresolved %greek-utf8-locale thunk))
 
 (with-test-prefix "text collation (French)"
 


hooks/post-receive
-- 
GNU Guile



reply via email to

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