diff options
-rw-r--r-- | test-suite/tests/i18n.test | 9 |
1 files 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))) |