From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A342FA057C for ; Fri, 27 Mar 2020 09:10:53 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7A2F01C0B6; Fri, 27 Mar 2020 09:10:52 +0100 (CET) Received: from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com [62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 4042B1C029; Fri, 27 Mar 2020 09:10:46 +0100 (CET) Received: from glumotte.dev.6wind.com. (unknown [10.16.0.195]) by proxy.6wind.com (Postfix) with ESMTP id 19E7E3B1DF4; Fri, 27 Mar 2020 09:10:46 +0100 (CET) From: Olivier Matz To: wangyunjian@huawei.com Cc: dev@dpdk.org, jerry.lilijun@huawei.com, olivier.matz@6wind.com, stable@dpdk.org, xudingke@huawei.com Date: Fri, 27 Mar 2020 09:09:54 +0100 Message-Id: <20200327080955.19571-3-olivier.matz@6wind.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200327080955.19571-1-olivier.matz@6wind.com> References: <1584592680-14000-1-git-send-email-wangyunjian@huawei.com> <20200327080955.19571-1-olivier.matz@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v2 2/3] tests/kvargs: fix check of invalid cases X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" The return was not properly placed, and only the first test case was validated. Fixes: e495f5435524 ("kvargs: add test case in app/test") Cc: stable@dpdk.org Signed-off-by: Olivier Matz --- app/test/test_kvargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_kvargs.c b/app/test/test_kvargs.c index d3db88a57..f823b771f 100644 --- a/app/test/test_kvargs.c +++ b/app/test/test_kvargs.c @@ -230,8 +230,8 @@ static int test_invalid_kvargs(void) rte_kvargs_free(kvlist); goto fail; } - return 0; } + return 0; fail: printf("while processing <%s>", *args); -- 2.25.1