mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 09:39:25 +01:00
test-runner: pass **kwargs in dbg()
This commit is contained in:
parent
c23c37c07c
commit
89bddf551a
@ -46,11 +46,11 @@ TEST_MAX_TIMEOUT = 120
|
|||||||
|
|
||||||
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
||||||
|
|
||||||
def dbg(*s):
|
def dbg(*s, **kwargs):
|
||||||
'''
|
'''
|
||||||
Allows prints if stdout has been re-directed
|
Allows prints if stdout has been re-directed
|
||||||
'''
|
'''
|
||||||
print(*s, file=sys.__stdout__)
|
print(*s, **kwargs, file=sys.__stdout__)
|
||||||
|
|
||||||
def exit_vm():
|
def exit_vm():
|
||||||
if config:
|
if config:
|
||||||
|
Loading…
Reference in New Issue
Block a user