From patchwork Fri May 8 07:32:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Liebler X-Patchwork-Id: 469901 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 372051402AB for ; Fri, 8 May 2015 17:32:39 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=L/IScSYd; dkim-atps=neutral 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:mime-version :content-type; q=dns; s=default; b=Wik01Mww50V31cm+7l5jv5jRG3XyL TpLYCXl2FkDAblMW3N8RYehBsy5+XyCXgXQ6miHMpvRrFTHsJVgNTrSlVGKVF+oB H1qL14e0/W8l00WO9rwEB4XE82bpTNrEErnpFz2x/G6daGXrM/53dvCrGE6VY8H5 CfIYBBDZGTpDUo= 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:mime-version :content-type; s=default; bh=FUPhw9rF1NmNI1BpIaAKDltITD4=; b=L/I ScSYdhplyxsXcHzwrsz7dmsMkB/qrJ67mKHh30XJGeE//SaNTN6/5ybNTaGaWIqo YLuexBK3B0jzc+mV8nRY3fehdv4H8yV06u5fxH96rv1CmlqQbyJg1yQjbsEv8ver 8qwe/AM886g0j3VpC2GNkWdcZyGqUa3ilIWPOBf8= Received: (qmail 90859 invoked by alias); 8 May 2015 07:32:32 -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 90847 invoked by uid 89); 8 May 2015 07:32:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL, BAYES_20, NO_DNS_FOR_FROM, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: plane.gmane.org To: libc-alpha@sourceware.org From: Stefan Liebler Subject: [PATCH] Adjust tst-strfmon1 after da_DK locale change. Date: Fri, 08 May 2015 09:32:09 +0200 Lines: 44 Message-ID: Mime-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 Hi, this patch adjusts the expected currency symbol kr to kr. after commit "Update currency_symbol in da_DK" (92566b4922934676da1643bf496dc982791d54d0) which changed it. The testcase localedata/tst-strfmon1 succeeds afterwards. Ok to commit? Bye Stefan --- 2015-05-08 Stefan Liebler * tst-strfmon1.c (tests): Update expected currency symbol. diff --git a/localedata/tst-strfmon1.c b/localedata/tst-strfmon1.c index e30aa1b..8292a6c 100644 --- a/localedata/tst-strfmon1.c +++ b/localedata/tst-strfmon1.c @@ -10,7 +10,7 @@ static const struct } tests[] = { { "de_DE.ISO-8859-1", "|-12,34 EUR|-12,34|" }, - { "da_DK.ISO-8859-1", "|kr -12,34|-12,34|" }, + { "da_DK.ISO-8859-1", "|kr. -12,34|-12,34|" }, { "zh_TW.EUC-TW", "|-NT$12.34|-12.34|" }, { "sv_SE.ISO-8859-1", "|-12,34 kr|-12,34|" } };