Sync with micropython. closes #1414

This commit is contained in:
Carl Karsten 2018-12-20 18:44:39 -06:00
parent 5e4b3a8fb6
commit 5f3a259827

View File

@ -23,7 +23,7 @@ def chew_filename(t):
def script_to_map(test_file):
r = {"name": chew_filename(test_file)["func"]}
with open(t) as test:
with open(test_file, "rb") as test:
script = test.readlines()
# Test for import skip_if and inject it into the test as needed.
@ -39,7 +39,11 @@ def script_to_map(test_file):
continue
script.insert(index + total_lines, "\t" + line)
total_lines += 1
r['script'] = escape(''.join(script))
r['script'] = escape(b''.join(script))
with open(test_file + ".exp", "rb") as f:
r["output"] = escape(f.read())
return r
test_function = (