Skip to content
Snippets Groups Projects
Commit a6f50bb6 authored by Kevin Brothaler's avatar Kevin Brothaler Committed by Digipom Inc
Browse files

Update output check based on all.rs test output

parent c8a4d214
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,8 @@ def run_app_on_simulator():
for line in test_run.stdout:
sys.stdout.write(line)
if test_run_failed == False:
test_run_failed = 'test result: FAILED.' in line
# Based on all.rs test output
test_run_failed = 'some tests failed' in line
sys.stdout.flush()
if test_run_failed == True:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment