From patchwork Wed Jul 10 06:26:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?5q+b5pmX?= X-Patchwork-Id: 1130199 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-103582-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=c-sky.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="j4KtGCdj"; dkim-atps=neutral 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 45k8QG68Fjz9s00 for ; Wed, 10 Jul 2019 16:28:22 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=lW/c3CxPnA3sH+SNxCHiV6I4mH2mqTCurX6Yi8dGDtx7eQUajbfZ2 339942uGxeU4E6vIiam9n+jsDatoVvwR34/ECSC9avdbUp9vbfgtr+efoQ8uJ1VH jA1rK8IuWXhGmATkSijbb8aOJkOQ7206N2TFvQO9kHDWSe14t7ORco= 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:from:to:cc:subject:date:message-id; s=default; bh=jWztzVk8CcE5aMrCELU4bNkIS8g=; b=j4KtGCdj6pxJa1WMpDDncnAYotLJ hOVImY0SmPbKJ2tYrGg8hlw51cJrdJwHzvRtNCbrU+q53EU+bPIo7IlRJYbdYrKJ Q7+0lYMDWjc8GVGAU/EKIZ3g0+bcJZZ0nky8r2sxbEg5rk/N6lDhb5DWPlWm3SRY 3rS4IZCJIDhcwN8= Received: (qmail 5711 invoked by alias); 10 Jul 2019 06:28:16 -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 5700 invoked by uid 89); 10 Jul 2019 06:28:16 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 spammy=wish X-HELO: smtp2200-217.mail.aliyun.com X-Alimail-AntiSpam: AC=CONTINUE; BC=0.156616|-1; CH=green; DM=CONTINUE|CONTINUE|true|0.12626-0.0242319-0.849508; FP=0|0|0|0|0|-1|-1|-1; HT=e02c03300; MF=han_mao@c-sky.com; NM=1; PH=DS; RN=3; RT=3; SR=0; TI=SMTPD_---.EvUy.L-_1562740089; From: Mao Han To: libc-alpha@sourceware.org Cc: linux-csky@vger.kernel.org, Mao Han Subject: [PATCH 1/1] locale/tst-locale-locpath: Fix arguments passing Date: Wed, 10 Jul 2019 14:26:34 +0800 Message-Id: <7901d4ee7ba91c963a9a7c9365267552edad32f3.1562739903.git.han_mao@c-sky.com> The arguments passed by Makefile are missing match with the arguments taken by locale/tst-locale-locpath.sh. Without this patch cross-test-ssh.sh will be called twice in a single command while doing the make check test wish ssh test wrapper. * locale/Makefile: Fix tst-locale-locpath arguments passing. --- ChangeLog | 4 ++++ locale/Makefile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 158337a..632e180 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-07-10 Mao Han + + * locale/Makefile: Fix tst-locale-locpath arguments passing. + 2019-07-09 Paul A. Clarke * sysdeps/powerpc/fpu/fenv_libc.h (_FPU_GET_RC): Protect use of diff --git a/locale/Makefile b/locale/Makefile index 0ad99ec..d78cf9b 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -113,5 +113,5 @@ lib := locale-programs include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left)) $(objpfx)tst-locale-locpath.out : tst-locale-locpath.sh $(objpfx)locale - $(SHELL) $< '$(common-objpfx)' '$(test-wrapper)' '$(test-wrapper-env)' > $@; \ + $(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' '$(run-program-env)' > $@; \ $(evaluate-test)