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 25D08A0487 for ; Mon, 29 Jul 2019 14:20:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7B1801BF7E; Mon, 29 Jul 2019 14:19:38 +0200 (CEST) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 37F181BF58 for ; Mon, 29 Jul 2019 14:19:37 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id C85E722245; Mon, 29 Jul 2019 08:19:34 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 29 Jul 2019 08:19:34 -0400 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=Rw3gHqVzqpF/Q22zkR7q6IVp7VJ2p+5RqiIrCVkfaO4=; b=AIQBr5ol7gvU ljMYCFNBXppIpXXCCiXTFH+jUY2uyRgo+ovHkBRHtifwgmCaWC3TfvoQ37EIAX2p XHSQqLgKG01hre68ENqL/HtL6qcd4eA90KAjXBeitY3WTFE5Lhj5iv831HwNusbE BZTOceicSzJAUftYnSGnoe0/tASuIKA= 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=fm3; bh=Rw3gHqVzqpF/Q22zkR7q6IVp7VJ2p+5RqiIrCVkfa O4=; b=MpSjlwoq7OtR0Oq8uDfydw/XrO6eh6f5Sx9qa9EmsJ6GWfdyquJRlky9m XmXEYEmKSkgpimCKtn1iO3lwGn7IckzSqaAgw+sxYCxdMGaeT9efXbI99HtLzci1 V4oa8Y2joSzp/Vhzx0tTAVSr3zbpQgWZ6K/u/lmrSqYv4bpYXWCElw9JDyvIqhcl hgwqpIk7AxkJMs5pRB7SD045jHukiTEvz4bWkXkBKRpPipvZtj5v2l/sTx9IvbAi Kebyc1iZb2/3rc8JPyUtcgie3Ip3d+QFXTH94KLSRMkuJSF/z/RrjQpKTqMgKgDr jZw9iYP9FBIRbCcdf5DM/S5DrGCWQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrledugdehtdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhho mhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgepud X-ME-Proxy: Received: from xps.localnet (unknown [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 12C0680062; Mon, 29 Jul 2019 08:19:33 -0400 (EDT) From: Thomas Monjalon To: David Marchand Cc: dev Date: Mon, 29 Jul 2019 14:19:01 +0200 Message-ID: <1993811.29u6B1lWsr@xps> In-Reply-To: References: <20190717112031.10968-1-thomas@monjalon.net> <20190717155202.1674-2-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 2/2] devtools: allow misc options in null test 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" 29/07/2019 12:36, David Marchand: > On Wed, Jul 17, 2019 at 5:53 PM Thomas Monjalon wrote: > > > > In order to ease basic testing with customized options, > > EAL and testpmd options can be added as third and fourth arguments > > of the "null PMD" script. > > > > Also, the first argument becomes more flexible by accepting > > the testpmd path as an alternative to the build directory. > > > > Signed-off-by: Thomas Monjalon > > Not sure I would have split this from the first patch. Patches have different intents, different explanations. > Out of curiosity, what are the cases where you need to set options? It allows to test different builds with a specific option, and see which one is failing. For instance, it was useful when debugging a failure with -w option recently.