diff --git a/tests/run-tests b/tests/run-tests
index 61726cc87d212934486f57e3c9ecc2f243dd153f..f24fc09617b81694cc24e597e9e87aa2079f8ad7 100755
--- a/tests/run-tests
+++ b/tests/run-tests
@@ -145,7 +145,7 @@ def run_micropython(pyb, args, test_file, is_special=False):
     output_mupy = output_mupy.replace(b'\r\n', b'\n')
 
     # don't try to convert the output if we should skip this test
-    if output_mupy == b'SKIP\n':
+    if output_mupy in (b'SKIP\n', b'CRASH'):
         return output_mupy
 
     if is_special or test_file in special_tests: