diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-07-11 16:48:49 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-07-12 06:59:15 +0200 |
commit | eea7a6dfd6ca7aaeed799c86fc7854f3d7561383 (patch) | |
tree | ff37e96e1b9910af0be0d22443edd7dc9471d176 /resources/tools/presentation | |
parent | 2f163225dbdf4969394695aa0b9af3bbf9a34015 (diff) |
FIX: PAL: input data processing
Change-Id: I295ca0a991dea8104e9794d7013be908f5461ea2
Signed-off-by: Tibor Frank <tifrank@cisco.com>
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 |