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 19A07A04C3; Fri, 22 Nov 2019 17:29:20 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D80332BB1; Fri, 22 Nov 2019 17:29:18 +0100 (CET) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 9872B2BA3 for ; Fri, 22 Nov 2019 17:29:17 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B6E3623868; Fri, 22 Nov 2019 11:29:15 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 22 Nov 2019 11:29:15 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=ppiozKsdtLprpudrvPOWvInc579ZvThdPpYfS6CuIhg=; b=hPAHrEQBWl7c NiP94+yE8FoRkdPOCvYjPDFn53V/DBxuuml+fn5NrL1o+fC4K2ov6D5Pblo8AC6A 7bwATWfGQPwaEJHrlrVnb68Kk2mdsR19ez0i0q6wEcBRrTZNnhTC4dRchjToAx1/ wCLMbekOPib1zUqrsaNz0Lr61E5yScA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=ppiozKsdtLprpudrvPOWvInc579ZvThdPpYfS6CuI hg=; b=nZVyuwHmmaLRMiWxE/oiwJV+xwQKtSk4h4e619m5Ll2EJEDrIIXFx7jbw siRIuKQAmOAA5PkR/NVw6AtXJbh4aNS7H7WbMcEYnrawI9zsIrl5KcJiBQBONfsZ g9MjTA1Fu4KddzVMDowQUqcBX2Z2RdKWqAzsGbIYKuvqlw7ZQh433F2VdhY9nBwM BmI7CwE+FSkdieWn9ylpxcrq0IEoX5+aU76VP5UKQR4xE2l5HtmchOIZXtwNJlCy 1S5D57JltRjvaZ3IJC1ysrq7LcdNBy8XolQ28cXTggt7Bi//tvvXmteZMhJ08EfU EMnvbLAEVZd6XdqgNyvTqe3zHVmiQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrudehgedgkeekucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecuff homhgrihhnpehshhgsrdgtihenucfkphepjeejrddufeegrddvtdefrddukeegnecurfgr rhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtnecuve hluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id C36F5306005F; Fri, 22 Nov 2019 11:29:14 -0500 (EST) From: Thomas Monjalon To: David Marchand Cc: dev@dpdk.org, Aaron Conole , Michael Santana Date: Fri, 22 Nov 2019 17:29:13 +0100 Message-ID: <4177024.uonCvJI2tQ@xps> In-Reply-To: <20191122155429.18971-1-david.marchand@redhat.com> References: <20191122155429.18971-1-david.marchand@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] ci: add minimal check on testpmd 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 22/11/2019 16:54, David Marchand: > --- a/.ci/linux-build.sh > +++ b/.ci/linux-build.sh > +if [ "$AARCH64" != "1" ]; then > + ./devtools/test-null.sh You are missing the build directory as first parameter, otherwise it won't find testpmd. One nit: ./ is probably useless.