Commit cb68a574 authored by Damien George's avatar Damien George

tests/run-tests.py: Provide more info if script run via pyboard crashes.

Signed-off-by: default avatarDamien George <damien@micropython.org>
parent a79d97cb
......@@ -187,7 +187,7 @@ def run_micropython(pyb, args, test_file, is_special=False):
if not is_special and e.args[0] == "exception":
output_mupy = e.args[1] + e.args[2] + b"CRASH"
else:
output_mupy = b"CRASH"
output_mupy = bytes(e.args[0], "ascii") + b"\nCRASH"
# canonical form for all ports/platforms is to use \n for end-of-line
output_mupy = output_mupy.replace(b"\r\n", b"\n")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment