From c0e53d575541d37bcd29b1c5a8f822a0204949c3 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 9 Dec 2019 09:56:32 +0100 Subject: [PATCH] Fixes: Report - show run Change-Id: Ife9e0faae467b39810c7bf6dec706ca0e09d24be Signed-off-by: Tibor Frank --- resources/tools/presentation/input_data_parser.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index dac5f19e69..af8a854ce9 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -442,15 +442,22 @@ class ExecutionChecker(ResultVisitor): :type msg: Message :returns: Nothing. """ + if u"show-run" not in self._data[u"tests"][self._test_id].keys(): self._data[u"tests"][self._test_id][u"show-run"] = str() if msg.message.count(u"stats runtime") or \ msg.message.count(u"Runtime"): - host = str(re.search(self.REGEX_TC_PAPI_CLI, msg.message). - group(1)) - socket = str(re.search(self.REGEX_TC_PAPI_CLI, msg.message). - group(2)) + try: + host = str(re.search(self.REGEX_TC_PAPI_CLI, msg.message). + group(1)) + except (AttributeError, IndexError): + host = u"" + try: + socket = str(re.search(self.REGEX_TC_PAPI_CLI, msg.message). + group(2)) + except (AttributeError, IndexError): + socket = u"" runtime = loads( str(msg.message). replace(u' ', u''). -- 2.16.6