diff options
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index ad3d32762e..f2660db120 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -501,6 +501,8 @@ class ExecutionChecker(ResultVisitor): elif "FRMOBL" in tags or "BMRR" in tags: test_type = "BMRR" else: + test_result["status"] = "FAIL" + self._data["tests"][self._test_ID] = test_result return test_result["type"] = test_type @@ -528,6 +530,7 @@ class ExecutionChecker(ResultVisitor): count=1) else: test_result["status"] = "FAIL" + self._data["tests"][self._test_ID] = test_result logging.error("The test '{0}' has no or more than one " "multi-threading tags.".format(self._test_ID)) return |