mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
Skip `tr_TR' tests on Solaris 2.10.
* test-suite/tests/i18n.test (under-turkish-utf8-locale-or-unresolved): Special-case Solaris 2.10.
This commit is contained in:
parent
1bd9a697b1
commit
d143fac660
1 changed files with 5 additions and 3 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue