diff --git a/contest/remote/lib/vm.py b/contest/remote/lib/vm.py index b3e011c..c77ab06 100644 --- a/contest/remote/lib/vm.py +++ b/contest/remote/lib/vm.py @@ -417,6 +417,7 @@ def new_vm(results_path, vm_id, thr=None, vm=None, config=None, cwd=None): def guess_indicators(output): return { "fail": output.find("[FAIL]") != -1 or output.find("[fail]") != -1 or \ + output.find(" FAIL:") != -1 or \ output.find("\nnot ok 1 selftests: ") != -1 or \ output.find("\n# not ok 1") != -1, "skip": output.find("[SKIP]") != -1 or output.find("[skip]") != -1 or \