From 6f63f118ef15d4c44ed87944735c0cf32153408a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 3 Feb 2012 10:17:12 +0100 Subject: [PATCH] tests: Work around erroneous tr_TR locale in Darwin 8. * test-suite/tests/i18n.test (under-turkish-utf8-locale-or-unresolved): Add exception for Darwin 8. Reported by David Fang , see . --- test-suite/tests/i18n.test | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test-suite/tests/i18n.test b/test-suite/tests/i18n.test index da2308058..d1b0a542b 100644 --- a/test-suite/tests/i18n.test +++ b/test-suite/tests/i18n.test @@ -138,11 +138,12 @@ (under-locale-or-unresolved %french-utf8-locale thunk)) (define (under-turkish-utf8-locale-or-unresolved thunk) - ;; FreeBSD 8.2 and Solaris 2.10 have a broken tr_TR locale where `i' - ;; is mapped to uppercase `I' instead of `İ', so disable tests on that - ;; platform. + ;; FreeBSD 8.2, Solaris 2.10, and Darwin 8.11.0 have a broken tr_TR + ;; locale where `i' is mapped to uppercase `I' instead of `İ', so + ;; disable tests on that platform. (if (or (string-contains %host-type "freebsd8") - (string-contains %host-type "solaris2.10")) + (string-contains %host-type "solaris2.10") + (string-contains %host-type "darwin8")) (throw 'unresolved) (under-locale-or-unresolved %turkish-utf8-locale thunk)))