From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62892 invoked by alias); 30 Nov 2017 15:20:18 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 62881 invoked by uid 89); 30 Nov 2017 15:20:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.7 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,KB_WAM_FROM_NAME_SINGLEWORD,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Hx-languages-length:1635, 123456789 X-HELO: mx1.redhat.com From: Mike FABIAN To: GNU C Library Subject: [COMMITTED] Fix test case for hr_HR monetary formatting Date: Thu, 30 Nov 2017 15:20:00 -0000 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2017-11/txt/msg01049.txt.bz2 --=-=-= Content-Type: text/plain Content-length: 173 Fix test case for hr_HR monetary formatting * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580] -- Mike FABIAN --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0003-Fix-test-case-for-hr_HR-monetary-formatting.patch Content-Transfer-Encoding: 8bit Content-length: 1582 >From cf4341ca90164398c05e74f72ff19dc52136731c Mon Sep 17 00:00:00 2001 From: Mike FABIAN Date: Thu, 30 Nov 2017 10:50:44 +0100 Subject: [PATCH 3/5] Fix test case for hr_HR monetary formatting * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580] --- ChangeLog | 4 ++++ stdlib/tst-strfmon_l.c | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5cc6dcfbf5..a3c2c750bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-11-30 Mike FABIAN + + * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580] + 2017-11-30 Dragan Stanojević - Nevidljivi * localedata/Makefile: Add hr_HR.UTF-8 to test-input and to diff --git a/stdlib/tst-strfmon_l.c b/stdlib/tst-strfmon_l.c index 1d8c842925..0276d7f957 100644 --- a/stdlib/tst-strfmon_l.c +++ b/stdlib/tst-strfmon_l.c @@ -163,12 +163,12 @@ static const struct locale_pair tests[] = "hr_HR.UTF-8", { { - "HRK 1\u202f234\u202f567,89", "Kn 1\u202f234\u202f567,89", - "HRK 1234567,89", "Kn 1234567,89" + "HRK 1\u202f234\u202f567,89", "1\u202f234\u202f567,89 kn", + "HRK 1234567,89", "1234567,89 kn" }, { - "-HRK 1\u202f234\u202f567,89", "-Kn 1\u202f234\u202f567,89", - "-HRK 1234567,89", "-Kn 1234567,89" + "-HRK 1\u202f234\u202f567,89", "-1\u202f234\u202f567,89 kn", + "-HRK 1234567,89", "-1234567,89 kn" } } }, -- 2.14.3 --=-=-=--