From 26c4b8b4fee108fb1e811409033ad5fa7962505d Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 21 Oct 2020 14:36:52 -0700 Subject: [PATCH] test-runner: add switch for genl debugging Providing 'iwd-genl' in the list of verbose options will enable IWD_GENL_DEBUG. --- tools/test-runner | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/test-runner b/tools/test-runner index 10db4c78..3ae4558c 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -578,6 +578,9 @@ class TestContext: if self.is_verbose('iwd-tls'): env['IWD_TLS_DEBUG'] = '1' + if self.is_verbose('iwd-genl'): + env['IWD_GENL_DEBUG'] = '1' + pid = self.start_process(args, env=env) return pid