All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] test-runner: Fix verbose check for processes in namespaces
@ 2021-08-28  3:10 Andrew Zaborowski
  2021-08-31 15:11 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Zaborowski @ 2021-08-28  3:10 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 783 bytes --]

Check whether verbose output is enabled for process name arg[0] before
prepending the "ip netns exec" part to arg since arg[0] is going to be
"ip" after that.
---
 tools/test-runner | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/test-runner b/tools/test-runner
index 8b244e99..42f140bf 100755
--- a/tools/test-runner
+++ b/tools/test-runner
@@ -176,12 +176,12 @@ class Process(subprocess.Popen):
 			global config
 			self.ctx = config.ctx
 
-		if namespace:
-			args = ['ip', 'netns', 'exec', namespace] + args
-
 		if self.ctx.is_verbose(args[0], log=False):
 			self.verbose = True
 
+		if namespace:
+			args = ['ip', 'netns', 'exec', namespace] + args
+
 		if outfile:
 			self._append_outfile(outfile)
 
-- 
2.30.2

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

* Re: [PATCH] test-runner: Fix verbose check for processes in namespaces
  2021-08-28  3:10 [PATCH] test-runner: Fix verbose check for processes in namespaces Andrew Zaborowski
@ 2021-08-31 15:11 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2021-08-31 15:11 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

Hi Andrew,

On 8/27/21 10:10 PM, Andrew Zaborowski wrote:
> Check whether verbose output is enabled for process name arg[0] before
> prepending the "ip netns exec" part to arg since arg[0] is going to be
> "ip" after that.
> ---
>   tools/test-runner | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)

Applied, thanks.

Regards,
-Denis

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

end of thread, other threads:[~2021-08-31 15:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-28  3:10 [PATCH] test-runner: Fix verbose check for processes in namespaces Andrew Zaborowski
2021-08-31 15:11 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.