From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <dev-bounces@dpdk.org> Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 0452AA045E for <public@inbox.dpdk.org>; Thu, 30 May 2019 13:56:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CFCB737A2; Thu, 30 May 2019 13:56:05 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id D34F4A3 for <dev@dpdk.org>; Thu, 30 May 2019 13:56:03 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 May 2019 04:56:02 -0700 X-ExtLoop1: 1 Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.64]) by orsmga004.jf.intel.com with SMTP; 30 May 2019 04:56:00 -0700 Received: by (sSMTP sendmail emulation); Thu, 30 May 2019 12:55:59 +0100 Date: Thu, 30 May 2019 12:55:59 +0100 From: Bruce Richardson <bruce.richardson@intel.com> To: Ilya Maximets <i.maximets@samsung.com> Cc: dev@dpdk.org, Thomas Monjalon <thomas@monjalon.net>, Aaron Conole <aconole@redhat.com>, Kevin Traynor <ktraynor@redhat.com> Message-ID: <20190530115558.GA1279@bricha3-MOBL.ger.corp.intel.com> References: <20190529163958.30796-1-i.maximets@samsung.com> <CGME20190529164006eucas1p296e902a46cb3ef7ac436d619f9e55d5b@eucas1p2.samsung.com> <20190529163958.30796-2-i.maximets@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190529163958.30796-2-i.maximets@samsung.com> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH 1/2] meson: don't check dependencies for tests if not required X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> On Wed, May 29, 2019 at 07:39:57PM +0300, Ilya Maximets wrote: > Don't need to check dependencies if test apps will not be built anyway. > > Signed-off-by: Ilya Maximets <i.maximets@samsung.com> > --- > app/test/meson.build | 38 +++++++++++++++++++------------------- > 1 file changed, 19 insertions(+), 19 deletions(-) > Agree with the idea. Would this work as a shorter alternative placed at the top of the file? if not get_option('tests') subdir_done() endif /Bruce