We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7bbeca commit 5c1a6e1Copy full SHA for 5c1a6e1
1 file changed
contest/remote/lib/vm.py
@@ -481,5 +481,6 @@ def guess_indicators(output):
481
"pass": output.find("[OKAY]") != -1 or output.find("[PASS]") != -1 or \
482
output.find("[ OK ]") != -1 or output.find("[OK]") != -1 or \
483
output.find("[ ok ]") != -1 or output.find("[pass]") != -1 or \
484
- output.find("PASSED all ") != -1 or output.find("\nok 1 selftests: ") != -1,
+ output.find("PASSED all ") != -1 or output.find("\nok 1 selftests: ") != -1 or \
485
+ bool(re.search(r"# Totals: pass:[1-9]\d* fail:0 (xfail:0 )?(xpass:0 )?skip:0 error:0", output)),
486
}
0 commit comments