From 1aa418d0980b485446cf1aaa8199c76ee5c1bc94 Mon Sep 17 00:00:00 2001 From: Andrew Zaborowski Date: Thu, 16 Jun 2022 02:02:22 +0200 Subject: [PATCH] test-runner: Support iwd-rtnl as a --verbose value --- tools/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/utils.py b/tools/utils.py index d16f221f..3cee9a22 100644 --- a/tools/utils.py +++ b/tools/utils.py @@ -405,6 +405,9 @@ class Namespace: if Process.is_verbose('iwd-acd'): env['IWD_ACD_DEBUG'] = '1' + if Process.is_verbose('iwd-rtnl'): + env['IWD_RTNL_DEBUG'] = '1' + return self.start_process(args, env=env) @staticmethod