From mboxrd@z Thu Jan 1 00:00:00 1970 From: Declan Doherty Subject: Re: [PATCH v2 4/4] devtools: add autotest app to build script Date: Thu, 30 Mar 2017 08:47:30 +0100 Message-ID: References: <20170329140419.27149-1-bruce.richardson@intel.com> <20170329163856.10932-1-bruce.richardson@intel.com> <20170329163856.10932-5-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org To: Bruce Richardson , thomas.monjalon@6wind.com Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 0155AFC32 for ; Thu, 30 Mar 2017 09:47:33 +0200 (CEST) In-Reply-To: <20170329163856.10932-5-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" On 29/03/2017 5:38 PM, Bruce Richardson wrote: > 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. > > Signed-off-by: Bruce Richardson > --- > V2: added in test-build as a new build action, since it skips the testpmd > build when run. > --- > devtools/test-build.sh | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/devtools/test-build.sh b/devtools/test-build.sh > index a38ffab..cc8f8dc 100755 > --- a/devtools/test-build.sh > +++ b/devtools/test-build.sh > @@ -229,6 +229,9 @@ for conf in $configs ; do > echo "================== Build $dir" > make -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ > EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir > + echo "================== Build tests for $dir" > + make test-build -j$J EXTRA_CFLAGS="$maxerr $DPDK_DEP_CFLAGS" \ > + EXTRA_LDFLAGS="$DPDK_DEP_LDFLAGS" $verbose O=$dir > ! $short || break > echo "================== Build examples for $dir" > export RTE_SDK=$(pwd) > Acked-by: Declan Doherty