From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id 72421D07E for ; Thu, 30 Mar 2017 16:36:13 +0200 (CEST) Received: by mail-wr0-f180.google.com with SMTP id w11so62395374wrc.3 for ; Thu, 30 Mar 2017 07:36:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=VzIymhR6e8sWMIR07wwEUOBqO+J2IEYYrLrsDr9U/PQ=; b=hD8Sv7okuzxa6SBD3YsSBP0ucfN39GJgBtO60oRcQlsQdu4B9k63EDnG27BH1gtGPF dudGrTWPlTYp/+5CrXhglEV54HhObzsR8kwGZTiUGRgqpGPcbBAWBVID46rFxUUUZf64 mBKK5mvsfWbI0J/TxchTHV2JD0Ii7RNe/hyKez6Z1uKDjIA4XflGkc2AmouxzJ52AUZi ubvssmPchL//Z5qWN/0b1gLa3rhrbf2MfDq/xkWc0Xca9m/4YuRTsEO1zIq9SvOTpd/u emh9Y2cc549ssKMDaKKW+2tKQfilI9aEt6DzDkGZfkCAoUZMezDtLwewpw2BWi1MgOwE QxMQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=VzIymhR6e8sWMIR07wwEUOBqO+J2IEYYrLrsDr9U/PQ=; b=nsok20mO0WjUQkmKb/XEHaZO6l9qZDtkOMFlPmj/lW7Cj3uq/ahMjITb0ucB8xxs/S XNxiNbxPUI8VKtd7AhL5mBubkjlReLhR1AvHdBefVhjlYI4DjukSdg4S8ZdBHfSURrdx spBx5Y4aH2GONdVqKt79XlKAHd7TCIwg8rvRAPlgUi3Lo7HEtcbvGnKWk/4ZZOadb4wx A71hrxPd/bQWm4j/QLCsPdJ2nN8AwFQ6CJAxw4EvvdMWIciLKCOKhcqbysYu4DSeEcwY MlBBGrT2HTCIeGpatkz+nEQCYl9JgA7goXD0zrIDWFcFRWQpC4dj2CvJE8N1InrQDx4D 73QA== X-Gm-Message-State: AFeK/H0OonmZGH5NJFaPl8RCneGoTMF2pVoj1ed9U3pfvEpR2hE3+wyEvY0BDU1sCqwm0zNc X-Received: by 10.28.59.139 with SMTP id i133mr692064wma.135.1490884573180; Thu, 30 Mar 2017 07:36:13 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id d29sm3480784wmi.21.2017.03.30.07.36.12 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Mar 2017 07:36:12 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org Date: Thu, 30 Mar 2017 16:36:11 +0200 Message-ID: <1851186.Q5rVaVkRzi@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170329163856.10932-5-bruce.richardson@intel.com> 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-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 4/4] devtools: add autotest app to build script X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Mar 2017 14:36:13 -0000 2017-03-29 17:38, Bruce Richardson: > 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. [...] > --- 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) It should be added after the "short break". The test-build target rebuild all. I think it should be standard apps like the examples and not re-link the libs before building. The other way is to merge it with the above command (default build).