patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] test: load drivers when required
@ 2020-03-23  8:39 David Marchand
  2020-03-23 15:33 ` Ruifeng Wang
  0 siblings, 1 reply; 2+ messages in thread
From: David Marchand @ 2020-03-23  8:39 UTC (permalink / raw)
  To: dev; +Cc: aconole, ruifeng.wang, stable, Reshma Pattan

Concatenating to test_args if event_eth_tx_adapter_autotest is executed
makes all subsequent tests inherit from the drivers loading while this
is unneeded.

Fixes: 207b1c813f39 ("test: fix build without ring PMD")
Cc: stable@dpdk.org

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 app/test/meson.build | 30 +++++++++++++-----------------
 1 file changed, 13 insertions(+), 17 deletions(-)

diff --git a/app/test/meson.build b/app/test/meson.build
index 0a2ce710f0..7ab2b586e1 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@ -403,37 +403,33 @@ timeout_seconds_fast = 10
 get_coremask = find_program('get-coremask.sh')
 num_cores_arg = '-l ' + run_command(get_coremask).stdout().strip()
 
-test_args = [num_cores_arg]
+default_test_args = [num_cores_arg]
 
 foreach arg : fast_test_names
+	test_args = default_test_args
+
 	if (get_option('default_library') == 'shared' and
 		arg == 'event_eth_tx_adapter_autotest')
 		foreach drv:dpdk_drivers
 			test_args += ['-d', drv.full_path().split('.a')[0] + '.so']
 		endforeach
 	endif
-	if host_machine.system() == 'linux'
-		test(arg, dpdk_test,
-			  env : ['DPDK_TEST=' + arg],
-			  args : test_args +
-				 ['--file-prefix=@0@'.format(arg)],
-		timeout : timeout_seconds_fast,
-		is_parallel : false,
-		suite : 'fast-tests')
-	else
-		test(arg, dpdk_test,
-			env : ['DPDK_TEST=' + arg],
-			args : test_args,
+	if is_linux
+		test_args += ['--file-prefix=@0@'.format(arg)]
+	endif
+
+	test(arg, dpdk_test,
+		env : ['DPDK_TEST=' + arg],
+		args : test_args,
 		timeout : timeout_seconds_fast,
 		is_parallel : false,
 		suite : 'fast-tests')
-	endif
 endforeach
 
 foreach arg : perf_test_names
 	test(arg, dpdk_test,
 	env : ['DPDK_TEST=' + arg],
-	args : test_args,
+	args : default_test_args,
 	timeout : timeout_seconds,
 	is_parallel : false,
 	suite : 'perf-tests')
@@ -442,7 +438,7 @@ endforeach
 foreach arg : driver_test_names
 	test(arg, dpdk_test,
 		env : ['DPDK_TEST=' + arg],
-		args : test_args,
+		args : default_test_args,
 		timeout : timeout_seconds,
 		is_parallel : false,
 		suite : 'driver-tests')
@@ -451,7 +447,7 @@ endforeach
 foreach arg : dump_test_names
 	test(arg, dpdk_test,
 		env : ['DPDK_TEST=' + arg],
-		args : test_args,
+		args : default_test_args,
 		timeout : timeout_seconds,
 		is_parallel : false,
 		suite : 'debug-tests')
-- 
2.23.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-stable] [PATCH] test: load drivers when required
  2020-03-23  8:39 [dpdk-stable] [PATCH] test: load drivers when required David Marchand
@ 2020-03-23 15:33 ` Ruifeng Wang
  0 siblings, 0 replies; 2+ messages in thread
From: Ruifeng Wang @ 2020-03-23 15:33 UTC (permalink / raw)
  To: David Marchand, dev; +Cc: aconole, stable, Reshma Pattan, nd


> -----Original Message-----
> From: David Marchand <david.marchand@redhat.com>
> Sent: Monday, March 23, 2020 16:40
> To: dev@dpdk.org
> Cc: aconole@redhat.com; Ruifeng Wang <Ruifeng.Wang@arm.com>;
> stable@dpdk.org; Reshma Pattan <reshma.pattan@intel.com>
> Subject: [PATCH] test: load drivers when required
> 
> Concatenating to test_args if event_eth_tx_adapter_autotest is executed
> makes all subsequent tests inherit from the drivers loading while this is
> unneeded.
> 
> Fixes: 207b1c813f39 ("test: fix build without ring PMD")
> Cc: stable@dpdk.org
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
>  app/test/meson.build | 30 +++++++++++++-----------------
>  1 file changed, 13 insertions(+), 17 deletions(-)
> 
> diff --git a/app/test/meson.build b/app/test/meson.build index
> 0a2ce710f0..7ab2b586e1 100644
> --- a/app/test/meson.build
> +++ b/app/test/meson.build
> @@ -403,37 +403,33 @@ timeout_seconds_fast = 10  get_coremask =
> find_program('get-coremask.sh')  num_cores_arg = '-l ' +
> run_command(get_coremask).stdout().strip()
> 
> -test_args = [num_cores_arg]
> +default_test_args = [num_cores_arg]
> 
>  foreach arg : fast_test_names
> +	test_args = default_test_args
> +
>  	if (get_option('default_library') == 'shared' and
>  		arg == 'event_eth_tx_adapter_autotest')
>  		foreach drv:dpdk_drivers
>  			test_args += ['-d', drv.full_path().split('.a')[0] + '.so']
>  		endforeach
>  	endif
> -	if host_machine.system() == 'linux'
> -		test(arg, dpdk_test,
> -			  env : ['DPDK_TEST=' + arg],
> -			  args : test_args +
> -				 ['--file-prefix=@0@'.format(arg)],
> -		timeout : timeout_seconds_fast,
> -		is_parallel : false,
> -		suite : 'fast-tests')
> -	else
> -		test(arg, dpdk_test,
> -			env : ['DPDK_TEST=' + arg],
> -			args : test_args,
> +	if is_linux
> +		test_args += ['--file-prefix=@0@'.format(arg)]
> +	endif
> +
> +	test(arg, dpdk_test,
> +		env : ['DPDK_TEST=' + arg],
> +		args : test_args,
>  		timeout : timeout_seconds_fast,
>  		is_parallel : false,
>  		suite : 'fast-tests')
> -	endif
>  endforeach
> 
>  foreach arg : perf_test_names
>  	test(arg, dpdk_test,
>  	env : ['DPDK_TEST=' + arg],
> -	args : test_args,
> +	args : default_test_args,
>  	timeout : timeout_seconds,
>  	is_parallel : false,
>  	suite : 'perf-tests')
> @@ -442,7 +438,7 @@ endforeach
>  foreach arg : driver_test_names
>  	test(arg, dpdk_test,
>  		env : ['DPDK_TEST=' + arg],
> -		args : test_args,
> +		args : default_test_args,
>  		timeout : timeout_seconds,
>  		is_parallel : false,
>  		suite : 'driver-tests')
> @@ -451,7 +447,7 @@ endforeach
>  foreach arg : dump_test_names
>  	test(arg, dpdk_test,
>  		env : ['DPDK_TEST=' + arg],
> -		args : test_args,
> +		args : default_test_args,
>  		timeout : timeout_seconds,
>  		is_parallel : false,
>  		suite : 'debug-tests')
> --
> 2.23.0

Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-03-23 15:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-23  8:39 [dpdk-stable] [PATCH] test: load drivers when required David Marchand
2020-03-23 15:33 ` Ruifeng Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).