From 9ea816f54a3cc2216eac45c6238fa06448d824df Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sun, 11 Aug 2013 22:38:49 -0400 Subject: [PATCH] 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. --- test-suite/tests/i18n.test | 10 ++++++---- 1 file 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)