From 3069be8fe377c94827f7633b5315c54864e377b0 Mon Sep 17 00:00:00 2001 From: Masashi Honma Date: Sat, 9 Feb 2019 07:51:09 +0900 Subject: [PATCH] tests: Encode VM input for python3 Signed-off-by: Masashi Honma --- tests/hwsim/vm/parallel-vm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/hwsim/vm/parallel-vm.py b/tests/hwsim/vm/parallel-vm.py index 3ab03c90a..367973681 100755 --- a/tests/hwsim/vm/parallel-vm.py +++ b/tests/hwsim/vm/parallel-vm.py @@ -213,7 +213,7 @@ def show_progress(scr): continue else: name = tests.pop(0) - vm[i]['proc'].stdin.write(name + '\n') + vm[i]['proc'].stdin.write(name.encode() + b'\n') scr.addstr(name) logger.debug("VM[%d] start test %s" % (i, name)) @@ -269,12 +269,12 @@ def show_progress(scr): scr.clrtoeol() updated = True if not rerun_tests: - vm[i]['proc'].stdin.write('\n') + vm[i]['proc'].stdin.write(b'\n') scr.addstr("shutting down") logger.info("VM[%d] shutting down" % i) else: name = rerun_tests.pop(0) - vm[i]['proc'].stdin.write(name + '\n') + vm[i]['proc'].stdin.write(name.encode() + b'\n') scr.addstr(name + "(*)") logger.debug("VM[%d] start test %s (*)" % (i, name))