summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2013-08-11 22:38:49 -0400
committerMark H Weaver <mhw@netris.org>2013-08-11 22:42:22 -0400
commit9ea816f54a3cc2216eac45c6238fa06448d824df (patch)
tree8a32c9d54388f6e83d0b8f94fff70d6c35915450
parent6f82b8f62321269d5bb71679951d5e0595f81d2d (diff)
downloadguile-9ea816f54a3cc2216eac45c6238fa06448d824df.tar.gz
Broken Turkish UTF-8 locale still unresolved in FreeBSD 9.1.
* test-suite/tests/i18n.test (under-turkish-utf8-locale-or-unresolved): Disable tests of Turkish UTF-8 locale in FreeBSD 9.1.
-rw-r--r--test-suite/tests/i18n.test10
1 files changed, 6 insertions, 4 deletions
diff --git a/test-suite/tests/i18n.test b/test-suite/tests/i18n.test
index ad65b73f0..b980cdcdb 100644
--- a/test-suite/tests/i18n.test
+++ b/test-suite/tests/i18n.test
@@ -1,6 +1,7 @@
;;;; i18n.test --- Exercise the i18n API. -*- coding: utf-8; mode: scheme; -*-
;;;;
-;;;; Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+;;;; Copyright (C) 2006, 2007, 2009, 2010, 2011, 2012,
+;;;; 2013 Free Software Foundation, Inc.
;;;; Ludovic Courtès
;;;;
;;;; This library is free software; you can redistribute it and/or
@@ -147,10 +148,11 @@
(under-locale-or-unresolved %french-utf8-locale thunk))
(define (under-turkish-utf8-locale-or-unresolved thunk)
- ;; 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.
+ ;; FreeBSD 8.2 and 9.1, 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 "freebsd9")
(string-contains %host-type "solaris2.10")
(string-contains %host-type "darwin8"))
(throw 'unresolved)