mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-19 03:14:05 -05:00
tests: Decode Popen output in wmediumd test sets for python3
Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
c45b969d6a
commit
4d364d9ee0
@ -108,7 +108,7 @@ def start_wmediumd(fn, params):
|
||||
|
||||
logs = ''
|
||||
while True:
|
||||
line = p.stdout.readline()
|
||||
line = p.stdout.readline().decode()
|
||||
if not line:
|
||||
output_wmediumd_log(p, params, logs)
|
||||
raise Exception('wmediumd was terminated unexpectedly')
|
||||
@ -121,7 +121,7 @@ def stop_wmediumd(p, params):
|
||||
p.terminate()
|
||||
p.wait()
|
||||
stdoutdata, stderrdata = p.communicate()
|
||||
output_wmediumd_log(p, params, stdoutdata)
|
||||
output_wmediumd_log(p, params, stdoutdata.decode())
|
||||
|
||||
def test_wmediumd_simple(dev, apdev, params):
|
||||
"""test a simple wmediumd configuration"""
|
||||
|
Loading…
Reference in New Issue
Block a user