3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 10:29:03 +02:00

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

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