From eea7a6dfd6ca7aaeed799c86fc7854f3d7561383 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Wed, 11 Jul 2018 16:48:49 +0200 Subject: [PATCH] FIX: PAL: input data processing Change-Id: I295ca0a991dea8104e9794d7013be908f5461ea2 Signed-off-by: Tibor Frank --- resources/tools/presentation/input_data_parser.py | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.16.6