diff options
-rw-r--r-- | test-suite/tests/i18n.test | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test-suite/tests/i18n.test b/test-suite/tests/i18n.test index 05670516d..da2308058 100644 --- a/test-suite/tests/i18n.test +++ b/test-suite/tests/i18n.test @@ -138,9 +138,11 @@ (under-locale-or-unresolved %french-utf8-locale thunk)) (define (under-turkish-utf8-locale-or-unresolved thunk) - ;; FreeBSD 8.2 has a broken tr_TR locale where `i' is mapped to - ;; uppercase `I' instead of `İ', so disable tests on that platform. - (if (string-contains %host-type "freebsd8") + ;; 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. + (if (or (string-contains %host-type "freebsd8") + (string-contains %host-type "solaris2.10")) (throw 'unresolved) (under-locale-or-unresolved %turkish-utf8-locale thunk))) |