Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-16 Thread Thomas Monjalon
2017-02-16 10:21, Ferruh Yigit: > On 2/16/2017 9:26 AM, Thomas Monjalon wrote: > > 2017-02-15 15:26, Ferruh Yigit: > >> --- a/mk/rte.sdkroot.mk > >> +++ b/mk/rte.sdkroot.mk > >> @@ -92,8 +92,8 @@ default: all > >> config showconfigs showversion showversionum: > >>$(Q)$(MAKE) -f $(RTE_SDK)/mk/r

Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-16 Thread Ferruh Yigit
On 2/16/2017 9:26 AM, Thomas Monjalon wrote: > 2017-02-15 15:26, Ferruh Yigit: >> --- a/mk/rte.sdkroot.mk >> +++ b/mk/rte.sdkroot.mk >> @@ -92,8 +92,8 @@ default: all >> config showconfigs showversion showversionum: >> $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk $@ >> >> -.PHONY: test fas

Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-16 Thread Thomas Monjalon
2017-02-15 15:26, Ferruh Yigit: > --- a/mk/rte.sdkroot.mk > +++ b/mk/rte.sdkroot.mk > @@ -92,8 +92,8 @@ default: all > config showconfigs showversion showversionum: > $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkconfig.mk $@ > > -.PHONY: test fast_test ring_test mempool_test perf_test coverage > -t

Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-16 Thread Bruce Richardson
On Wed, Feb 15, 2017 at 05:41:08PM +, Ferruh Yigit wrote: > On 2/15/2017 5:07 PM, Bruce Richardson wrote: > > On Wed, Feb 15, 2017 at 03:26:31PM +, Ferruh Yigit wrote: > >> Since "make test" and "make test-build" does dependency resolving, they > >> check for all dependent components (lib a

Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-15 Thread Ferruh Yigit
On 2/15/2017 5:07 PM, Bruce Richardson wrote: > On Wed, Feb 15, 2017 at 03:26:31PM +, Ferruh Yigit wrote: >> Since "make test" and "make test-build" does dependency resolving, they >> check for all dependent components (lib and drivers) which takes a few >> seconds. >> >> This is a good feature

Re: [dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-15 Thread Bruce Richardson
On Wed, Feb 15, 2017 at 03:26:31PM +, Ferruh Yigit wrote: > Since "make test" and "make test-build" does dependency resolving, they > check for all dependent components (lib and drivers) which takes a few > seconds. > > This is a good feature during development, but if the target is just > run

[dpdk-dev] [PATCH 3/4] mk: add new test-run make rule

2017-02-15 Thread Ferruh Yigit
Since "make test" and "make test-build" does dependency resolving, they check for all dependent components (lib and drivers) which takes a few seconds. This is a good feature during development, but if the target is just running unit test, that step is unnecessary, it is possible to compile onece