test-runner: add switch for genl debugging

Providing 'iwd-genl' in the list of verbose options will enable
IWD_GENL_DEBUG.
This commit is contained in:
James Prestwood 2020-10-21 14:36:52 -07:00 committed by Denis Kenzior
parent 334b03478b
commit 26c4b8b4fe
1 changed files with 3 additions and 0 deletions

View File

@ -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