From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 2/4] mk: do not build tests by default Date: Thu, 16 Feb 2017 09:53:35 +0100 Message-ID: <2590637.Rj3BpoAWc4@xps13> References: <20170214151326.7554-1-ferruh.yigit@intel.com> <3106919.K5kYvNu2Ff@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, Bruce Richardson , John McNamara , Keith Wiles To: Ferruh Yigit Return-path: Received: from mail-wm0-f51.google.com (mail-wm0-f51.google.com [74.125.82.51]) by dpdk.org (Postfix) with ESMTP id 02661378E for ; Thu, 16 Feb 2017 09:53:36 +0100 (CET) Received: by mail-wm0-f51.google.com with SMTP id v186so60735596wmd.0 for ; Thu, 16 Feb 2017 00:53:36 -0800 (PST) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2017-02-15 17:30, Ferruh Yigit: > On 2/15/2017 4:58 PM, Thomas Monjalon wrote: > > 2017-02-15 15:26, Ferruh Yigit: > >> +.PHONY: test-buid > >> +test-build: > >> + $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk checkconfig > >> + $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkbuild.mk test > > > > Why not rely on default rule below? > > > > # all other build targets > > %: > > $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk checkconfig > > $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkbuild.mk $@ > > > Because generic rule is using "rte.sdkbuild.mk $@" rule, > for unit-test, $@ is test-build, but sdkbuild rule is "test" > > This can be solved with adding following to sdkbuild.mk: > > --- a/mk/rte.sdkbuild.mk > +++ b/mk/rte.sdkbuild.mk > @@ -72,6 +72,9 @@ clean: $(CLEANDIRS) > $(Q)$(MAKE) -f $(RTE_SDK)/GNUmakefile gcovclean > @echo Clean complete > > +.PHONY: test-build > +test-build: test > + > .SECONDEXPANSION: > .PHONY: $(ROOTDIRS-y) test > $(ROOTDIRS-y) test: > > > I can update if you think this is better? Yes it seems better. Or you can just rename test into test-build in rte.sdkbuild.mk.