test: nasm-t -- Write text data in utf8 form

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2018-11-03 14:50:09 +03:00
parent b4e3f11931
commit 750bc50aa8

View File

@ -363,13 +363,13 @@ def test_update(desc):
match = desc['_base-dir'] + os.sep + t['stdout']
print("\tMoving %s to %s" % ('stdout', match))
with open(match, "wb") as f:
f.write(stdout)
f.write(stdout.encode("utf-8"))
f.close()
if 'stderr' in t:
match = desc['_base-dir'] + os.sep + t['stderr']
print("\tMoving %s to %s" % ('stderr', match))
with open(match, "wb") as f:
f.write(stderr)
f.write(stderr.encode("utf-8"))
f.close()
return test_updated(desc['_test-name'])