From dd80bbf39782bad261fab61e4a92e0b086ea1505 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 26 Sep 2022 11:52:02 -0700 Subject: [PATCH] test-runner: add custom verbose option iwd-sae Enables IWD_SAE_DEBUG to be set in the test-runner environment --- tools/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/utils.py b/tools/utils.py index a1b3e041..a07c3183 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -449,6 +449,9 @@ class Namespace: if Process.is_verbose('iwd-rtnl'): env['IWD_RTNL_DEBUG'] = '1' + if Process.is_verbose('iwd-sae'): + env['IWD_SAE_DEBUG'] = '1' + proc = self.start_process(args, env=env) proc.wait_for_service(self, 'net.connman.iwd', 20)