Add "iwd-tls" and "iwd-dhcp" flags for -v. These should automatically enable "-v iwd" output because of the substring matching. --- tools/test-runner | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/test-runner b/tools/test-runner index 00a0978a..dc6b1f7a 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -565,6 +565,12 @@ class TestContext: env['CONFIGURATION_DIRECTORY'] = config_dir env['STATE_DIRECTORY'] = '/var/lib/iwd' + if self.is_verbose('iwd-dhcp'): + env['IWD_DHCP_DEBUG'] = '1' + + if self.is_verbose('iwd-tls'): + env['IWD_TLS_DEBUG'] = '1' + pid = self.start_process(args, env=env) return pid -- 2.25.1