From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH 4/4] devtools: add autotest app to build script Date: Wed, 29 Mar 2017 15:04:19 +0100 Message-ID: <20170329140419.27149-5-bruce.richardson@intel.com> References: <20170329140419.27149-1-bruce.richardson@intel.com> Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org, Bruce Richardson To: thomas.monjalon@6wind.com Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id D4236F937 for ; Wed, 29 Mar 2017 16:04:42 +0200 (CEST) In-Reply-To: <20170329140419.27149-1-bruce.richardson@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" Since the test app is no longer being build by default as part of a build, we need to update the testbuild script to take account of this. Rather than just doing a "make" in the build directory, we can instead do "make test-build" which does a normal build as well as building the test application too. Signed-off-by: Bruce Richardson --- 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 a38ffab..0894bbd 100755 --- a/devtools/test-build.sh +++ b/devtools/test-build.sh @@ -227,7 +227,7 @@ for conf in $configs ; do config $dir $target $options echo "================== Build $dir" - make -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ + make -j$J test-build EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir ! $short || break echo "================== Build examples for $dir" -- 2.9.3