From patchwork Thu Jun 12 12:53:15 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Liebler X-Patchwork-Id: 1467 Received: (qmail 26003 invoked by alias); 12 Jun 2014 12:53:34 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 25991 invoked by uid 89); 12 Jun 2014 12:53:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 X-HELO: plane.gmane.org To: libc-alpha@sourceware.org From: Stefan Liebler Subject: Re: Include LOCPATH in default test environment Date: Thu, 12 Jun 2014 14:53:15 +0200 Lines: 52 Message-ID: References: Mime-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 In-Reply-To: On 06/10/2014 04:00 PM, Andreas Schwab wrote: > Stefan Liebler writes: > >> tst-strcoll-overflow (make xtests) is failing (on s390) due to this >> commit. The test sets locale en-GB.UTF-8, which does not exist in >> localedata-path and the test exits without testing strcoll. > > That means localedata/Makefile:LOCALES needs to be updated. > > Andreas. > Hi, this patch generates en_GB.UTF-8, which is used in tst-strcoll-overflow. This solves the issue on s390/s390x. Please retest and commit. Bye --- 2014-06-12 Stefan Liebler * Makefile (LOCALES): Add en_GB.UTF-8. --- diff --git a/localedata/Makefile b/localedata/Makefile index 76eeedf..939cc3d 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -105,7 +105,7 @@ LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 \ hr_HR.ISO-8859-2 sv_SE.ISO-8859-1 ja_JP.SJIS fr_FR.ISO-8859-1 \ nb_NO.ISO-8859-1 nn_NO.ISO-8859-1 tr_TR.UTF-8 cs_CZ.UTF-8 \ zh_TW.EUC-TW fa_IR.UTF-8 fr_FR.UTF-8 ja_JP.UTF-8 si_LK.UTF-8 \ - tr_TR.ISO-8859-9 + tr_TR.ISO-8859-9 en_GB.UTF-8 LOCALE_SRCS := $(shell echo "$(LOCALES)"|sed 's/\([^ .]*\)[^ ]*/\1/g') CHARMAPS := $(shell echo "$(LOCALES)" | \ sed -e 's/[^ .]*[.]\([^ ]*\)/\1/g' -e s/SJIS/SHIFT_JIS/g)