From: Andrey Shinkevich Date: Thu, 7 Mar 2019 13:33:57 +0000 (+0300) Subject: iotests: open notrun files in text mode X-Git-Tag: qemu-xen-4.13.0-rc1~323^2~30 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ce090f656c44b357f6caf8f6000648744fbb655b;p=qemu-xen.git iotests: open notrun files in text mode Replace the binary mode with the default text one when *.notrun files are opened for skipped tests. That change is made for the compatibility with Python 3 which returns error otherwise. Signed-off-by: Kevin Wolf Signed-off-by: Andrey Shinkevich Signed-off-by: Kevin Wolf --- diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py index 3d15571688..46fad4ce81 100644 --- a/tests/qemu-iotests/iotests.py +++ b/tests/qemu-iotests/iotests.py @@ -712,7 +712,7 @@ def notrun(reason): # Each test in qemu-iotests has a number ("seq") seq = os.path.basename(sys.argv[0]) - open('%s/%s.notrun' % (output_dir, seq), 'wb').write(reason + '\n') + open('%s/%s.notrun' % (output_dir, seq), 'w').write(reason + '\n') print('%s not run: %s' % (seq, reason)) sys.exit(0)