diff mbox series

[06/15] test-runner: Support iwd-rtnl as a --verbose value

Message ID 20220616000231.1966008-6-andrew.zaborowski@intel.com (mailing list archive)
State Accepted, archived
Headers show
Series [01/15] netconfig: Fix address format validation | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
prestwoj/iwd-ci-gitlint success GitLint

Commit Message

Andrew Zaborowski June 16, 2022, 12:02 a.m. UTC
---
 tools/utils.py | 3 +++
 1 file changed, 3 insertions(+)

Comments

Denis Kenzior June 17, 2022, 7:15 p.m. UTC | #1
Hi Andrew,

On 6/15/22 19:02, Andrew Zaborowski wrote:
> ---
>   tools/utils.py | 3 +++
>   1 file changed, 3 insertions(+)
> 

Patch 6-7 applied, thanks.

Regards,
-Denis
diff mbox series

Patch

diff --git a/tools/utils.py b/tools/utils.py
index d16f221f..3cee9a22 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -405,6 +405,9 @@  class Namespace:
 		if Process.is_verbose('iwd-acd'):
 			env['IWD_ACD_DEBUG'] = '1'
 
+		if Process.is_verbose('iwd-rtnl'):
+			env['IWD_RTNL_DEBUG'] = '1'
+
 		return self.start_process(args, env=env)
 
 	@staticmethod