Re: [dpdk-dev] [PATCH] test: fix build without timer

2019-07-05 Thread Thomas Monjalon
04/07/2019 18:27, Bruce Richardson: > On Thu, Jul 04, 2019 at 05:36:08PM +0200, Timothy Redaelli wrote: > > The action for timer_secondary_spawn_wait should be enabled only when > > CONFIG_RTE_LIBRTE_TIMER is enabled. > > > > Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process

Re: [dpdk-dev] [PATCH] test: fix build without timer

2019-07-04 Thread Bruce Richardson
On Thu, Jul 04, 2019 at 05:36:08PM +0200, Timothy Redaelli wrote: > The action for timer_secondary_spawn_wait should be enabled only when > CONFIG_RTE_LIBRTE_TIMER is enabled. > > Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process") > Cc: erik.g.carri...@intel.com > Cc: sta..

[dpdk-dev] [PATCH] test: fix build without timer

2019-07-04 Thread Timothy Redaelli
The action for timer_secondary_spawn_wait should be enabled only when CONFIG_RTE_LIBRTE_TIMER is enabled. Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process") Cc: erik.g.carri...@intel.com Cc: sta...@dpdk.org Signed-off-by: Timothy Redaelli --- app/test/test.c | 2 ++ 1 fi

Re: [dpdk-dev] [PATCH] test: fix build when pdump config is disabled

2019-03-20 Thread Rami Rosen
pdump unit test has dependency on pthread code in test.c and process.h to run send_pkts(), this code should be enabled only when CONFIG_RTE_LIBRTE_PDUMP is enabled. Bugzilla ID: 222 Fixes: 086eb64db3 ("test/pdump: add unit test for pdump library") CC: sta...@dpdk.org Signed-off-by: Reshma Pattan

[dpdk-dev] [PATCH] test: fix build when pdump config is disabled

2019-03-20 Thread Reshma Pattan
pdump unit test has dependency on pthread code in test.c and process.h to run send_pkts(), this code should be enabled only when CONFIG_RTE_LIBRTE_PDUMP is enabled. Bugzilla ID: 222 Fixes: 086eb64db3 ("test/pdump: add unit test for pdump library") CC: sta...@dpdk.org Signed-off-by: Reshma Pattan

Re: [dpdk-dev] [PATCH] test: fix build when disabling ipsec library

2019-01-17 Thread Thomas Monjalon
17/01/2019 13:20, Ananyev, Konstantin: > From: David Marchand [mailto:david.march...@redhat.com] > > > > Caught after pulling ipsec then compile in an existing build directory. > > > > Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test") > > Signed-off-by: David Marchand > > --- > > Did

Re: [dpdk-dev] [PATCH] test: fix build when disabling ipsec library

2019-01-17 Thread Ananyev, Konstantin
> -Original Message- > From: David Marchand [mailto:david.march...@redhat.com] > Sent: Thursday, January 17, 2019 10:15 AM > To: dev@dpdk.org > Cc: Awal, Mohammad Abdul ; Iremonger, Bernard > ; Ananyev, > Konstantin ; Doherty, Declan > ; akhil.go...@nxp.com > Subject: [PATCH] test: fix

[dpdk-dev] [PATCH] test: fix build when disabling ipsec library

2019-01-17 Thread David Marchand
Caught after pulling ipsec then compile in an existing build directory. Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test") Signed-off-by: David Marchand --- Did a simple fix, we might want to have something like a _LDLIBS-y variable but that's just cosmetic. --- test/test/Makefile |

Re: [dpdk-dev] [PATCH] test: fix build

2018-11-11 Thread Thomas Monjalon
06/11/2018 20:54, Neil Horman: > On Tue, Nov 06, 2018 at 02:35:01PM +, Ferruh Yigit wrote: > > With "make -C test/" command getting following warnings: > > awk: cmd. line:1: fatal: cannot open file `/cmdline_test/cmdline_test/' > > for reading (No such file or directory) > > awk: cmd. l

Re: [dpdk-dev] [PATCH] test: fix build

2018-11-06 Thread Neil Horman
On Tue, Nov 06, 2018 at 02:35:01PM +, Ferruh Yigit wrote: > With "make -C test/" command getting following warnings: > awk: cmd. line:1: fatal: cannot open file `/cmdline_test/cmdline_test/' > for reading (No such file or directory) > awk: cmd. line:1: fatal: cannot open file > `/

[dpdk-dev] [PATCH] test: fix build

2018-11-06 Thread Ferruh Yigit
With "make -C test/" command getting following warnings: awk: cmd. line:1: fatal: cannot open file `/cmdline_test/cmdline_test/' for reading (No such file or directory) awk: cmd. line:1: fatal: cannot open file `/test-pipeline/test-pipeline/' for reading (No such file or directo

Re: [dpdk-dev] [PATCH] test: fix build with icc

2018-05-14 Thread Thomas Monjalon
> > This patch provides fix for icc compilation issue with event crypto adapter > > test > > application. > > Currently, number of elements in the session mempool is defined by > > max_nb_sessions & this is replaced with a macro. > > > > Fixes: 3c2c535ecfc0 ("test: add event crypto adapter auto-t

Re: [dpdk-dev] [PATCH] test: fix build with icc

2018-05-14 Thread De Lara Guarch, Pablo
> -Original Message- > From: Gujjar, Abhinandan S > Sent: Monday, May 14, 2018 7:50 AM > To: jerin.ja...@caviumnetworks.com; tho...@monjalon.net; dev@dpdk.org > Cc: De Lara Guarch, Pablo ; Gujjar, > Abhinandan S > Subject: [PATCH] test: fix build with icc > > This patch provides fix for

[dpdk-dev] [PATCH] test: fix build with icc

2018-05-13 Thread Abhinandan Gujjar
This patch provides fix for icc compilation issue with event crypto adapter test application. Currently, number of elements in the session mempool is defined by max_nb_sessions & this is replaced with a macro. Fixes: 3c2c535ecfc0 ("test: add event crypto adapter auto-test") Reported-by: Pablo de

Re: [dpdk-dev] [PATCH] test: fix build without flow classify

2017-10-25 Thread Thomas Monjalon
> > The unit test for flow classify should be disabled if the library is > > disabled in > > the configuration. > > > > Fixes: 9c9befea4f57 ("test: add flow classify unit tests") > > Cc: bernard.iremon...@intel.com > > > > Signed-off-by: Thomas Monjalon > > Acked-by: Bernard Iremonger Appli

Re: [dpdk-dev] [PATCH] test: fix build without flow classify

2017-10-25 Thread Iremonger, Bernard
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Wednesday, October 25, 2017 4:18 PM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [PATCH] test: fix build without flow classify > > The unit test for flow classify should be disabled if the library

[dpdk-dev] [PATCH] test: fix build without flow classify

2017-10-25 Thread Thomas Monjalon
The unit test for flow classify should be disabled if the library is disabled in the configuration. Fixes: 9c9befea4f57 ("test: add flow classify unit tests") Cc: bernard.iremon...@intel.com Signed-off-by: Thomas Monjalon --- test/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion