From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo de Lara Subject: [PATCH v2] devtools: add compressdev tests to test-build Date: Thu, 19 Jul 2018 04:07:52 +0100 Message-ID: <20180719030752.32484-1-pablo.de.lara.guarch@intel.com> References: <20180711071750.9872-1-pablo.de.lara.guarch@intel.com> Cc: dev@dpdk.org, Pablo de Lara To: thomas@monjalon.net Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 9CD112C38 for ; Thu, 19 Jul 2018 13:14:21 +0200 (CEST) In-Reply-To: <20180711071750.9872-1-pablo.de.lara.guarch@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Compressdev tests depend on Zlib library, so they can only be enabled if this is available. Signed-off-by: Pablo de Lara --- v2: - Add test "$DPDK_DEP_ZLIB" != y" line, to actually check for the Zlib dependency devtools/test-build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devtools/test-build.sh b/devtools/test-build.sh index 3ea82bb46..0a420da0b 100755 --- a/devtools/test-build.sh +++ b/devtools/test-build.sh @@ -153,6 +153,8 @@ config () # sed -ri 's,(PMD_SZEDATA2=)n,\1y,' $1/.config test "$DPDK_DEP_ZLIB" != y || \ sed -ri 's,(BNX2X_PMD=)n,\1y,' $1/.config + test "$DPDK_DEP_ZLIB" != y || \ + sed -ri 's,(COMPRESSDEV_TEST=)n,\1y,' $1/.config sed -ri 's,(NFP_PMD=)n,\1y,' $1/.config test "$DPDK_DEP_PCAP" != y || \ sed -ri 's,(PCAP=)n,\1y,' $1/.config -- 2.14.4