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: 359106 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id D2333140093 for ; Thu, 12 Jun 2014 22:53:39 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:in-reply-to; q=dns; s=default; b=n8Sa OtUk408YYReuAEvxd/xCxNcp4kAN+6wcs4IBwJthqrY1h7e/YHJlM/fCV3YPxC7Y T7uCmfntbt8E0zN8AxE9ZvxqonnGsxi4mLn6d3Q8xx810rEPAn+xVsX3gi1VhU1A GBK4mFQbGpzfLtLwBz56FRtrRssjDk9S5XDY57Y= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:to:from:subject:date:message-id:references :mime-version:content-type:in-reply-to; s=default; bh=CCK3YxKtOG R5JVFI3OKC6+AJldI=; b=siO0nqImKpMvxA1pAT0vU1uDEZ2gHroV6D9lCg3f0B k+S7ffvSQJFF+MU0jfE+/mQxGVi2vYit2vmWJBkSLvGZUJR/yHUeqD6wfMjWrIFX lJJHuCJ/Q706TmMlmqSJ2IlxJnZNF/CGBSEMMmcFQONjS+mWH3YQ01VP9YXwroma A= 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)