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 BDE02A04F0 for ; Mon, 16 Dec 2019 16:30:19 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8C3C91BE8E; Mon, 16 Dec 2019 16:30:19 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id F02601F5; Mon, 16 Dec 2019 16:30:16 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 3B7E62223C; Mon, 16 Dec 2019 10:30:16 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 16 Dec 2019 10:30:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; s=mesmtp; bh=onabSgO14rsR/VtrG5L3vEI ZkDAoqVEVJVadvCtdUsU=; b=fsA9q1QzIt/8npzyRwYJXhH3UhWAAB8zXFztB+Q EAFvAVP6nqCSCtjsgbyEs+FGjSv6eG8CPVX+quCBoIOBZMnCmjMEYwTOxiUEaDuN JkvvpmQvj+SqwfBuq4QcNQETWWdxDduBdalBY9IqA3X7Q8wgpiMesb27tO3jhNdG ejKE= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:date:from :message-id:mime-version:subject:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=onabSgO14rsR/VtrG 5L3vEIZkDAoqVEVJVadvCtdUsU=; b=CVqWThXOnA0HQZAE0F/5HSu37xHVmJfOn squN3m3bVnpoJy2By/QRV3+U+JcGvNN1kwg9U0tY4jkJGrN7/72pVwN2Htj+C061 1Aj23EUJfUz/1VT2dOG8ur15908+9Ugj00NkdXou4oHmR0bHhSxMV8Ip/mJ6OqWG 4KiDePXIcCTQcEFn3gUJubpJcKg8bzUTXf2uoZZP91YHSd0tYs8yJmsvzeOIyxOF dMMsACU5Qs2xukcTkLRPrIpGYP8L9y9MPekL1botaq4UBCQsF7QPZX/9AzAvpK0J S0t1bi3qRMTXlRRf9JtpTY60Aljqr832JbzwOKNi21BPOeRCTp2Rw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrvddthedgjeejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkffoggfgsedtkeertdertddtnecuhfhrohhmpefvhhhomhgrshcu ofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukfhppe ejjedrudefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhhohhm rghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id AA8DD80065; Mon, 16 Dec 2019 10:30:14 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Cc: stable@dpdk.org, Ali Alnubani , Shahaf Shuler Date: Mon, 16 Dec 2019 16:29:17 +0100 Message-Id: <20191216152917.1780536-1-thomas@monjalon.net> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH] devtools: fix debug build test 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" When testing build with +debug options, the statistics are enabled. It was wrongly matching CONFIG_RTE_IBVERBS_LINK_STATIC. The pattern is fixed to match only statistics config options. Fixes: 2c0dd7b69fb0 ("config: add static linkage of mlx dependency") Cc: stable@dpdk.org Reported-by: Ali Alnubani Signed-off-by: Thomas Monjalon --- devtools/test-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/test-build.sh b/devtools/test-build.sh index be565a1bea..52305fbb8c 100755 --- a/devtools/test-build.sh +++ b/devtools/test-build.sh @@ -149,7 +149,7 @@ config () # ! echo $3 | grep -q '+debug' || ( \ sed -ri="" 's,(RTE_LOG_DP_LEVEL=).*,\1RTE_LOG_DEBUG,' $1/.config sed -ri="" 's,(_DEBUG.*=)n,\1y,' $1/.config - sed -ri="" 's,(_STAT.*=)n,\1y,' $1/.config + sed -ri="" 's,(_STAT)([S_].*=|=)n,\1\2y,' $1/.config sed -ri="" 's,(TEST_PMD_RECORD_.*=)n,\1y,' $1/.config ) # Automatic configuration -- 2.24.0