From 1a903001f9d1744b02db708a9d4ef44d6a09d6a6 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 6 Apr 2022 12:14:52 -0700 Subject: [PATCH] auto-t: cleanup the few uses of is_verbose These were used outside of run-tests in a couple places. Replace these with Process.is_verbose() --- autotests/testP2P/connection_test.py | 4 +++- autotests/util/wpas.py | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/autotests/testP2P/connection_test.py b/autotests/testP2P/connection_test.py index d1681164..f22f0682 100644 --- a/autotests/testP2P/connection_test.py +++ b/autotests/testP2P/connection_test.py @@ -11,6 +11,8 @@ import testutil from config import ctx from wpas import Wpas +from utils import Process + class Test(unittest.TestCase): leases_path = '/tmp/dhcp.lease' @@ -110,7 +112,7 @@ class Test(unittest.TestCase): self.assertEqual(wpas.p2p_group['go_ip_addr'], '192.168.1.1') extra_params = [] - if ctx.is_verbose('dhclient'): + if Process.is_verbose('dhclient'): extra_params.append('-v') dhcp = ctx.start_process(['dhclient', '-d', '--no-pid', '-cf', '/dev/null', '-lf', self.leases_path, diff --git a/autotests/util/wpas.py b/autotests/util/wpas.py index 995bdad1..67b32d5f 100644 --- a/autotests/util/wpas.py +++ b/autotests/util/wpas.py @@ -3,8 +3,11 @@ import os import socket from gi.repository import GLib from config import ctx + import binascii +from utils import Process + ctrl_count = 0 class Wpas: @@ -31,7 +34,7 @@ class Wpas: self.io_watch = None cmd = ['wpa_supplicant', '-i', self.interface.name, '-c', self.config_path] - if ctx.is_verbose('wpa_supplicant-dbg'): + if Process.is_verbose('wpa_supplicant-dbg'): cmd += ['-d'] self.wpa_supplicant = ctx.start_process(cmd)