diff options
-rwxr-xr-x | tests/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-tests b/tests/run-tests index 06a0e3af20..29d2120e0d 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -77,7 +77,7 @@ def run_micropython(pyb, args, test_file): else: output_mupy = subprocess.check_output(args + [test_file]) except subprocess.CalledProcessError: - output_mupy = b'CRASH' + return b'CRASH' # unescape wanted regex chars and escape unwanted ones def convert_regex_escapes(line): |