From: Tibor Frank Date: Fri, 16 Aug 2019 07:41:06 +0000 (+0200) Subject: PAL: Process show runtime output 3 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=6d2df41aa905ac8fc132b461bb692938d97af47f PAL: Process show runtime output 3 - format the table Change-Id: I871251a8329e5d52c527c93afe35d875bddaed0c Signed-off-by: Tibor Frank (cherry picked from commit 859a3f724c077f9db9a2f40f76b6dad27f199003) --- diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index f2656d2381..25e258f75a 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -533,15 +533,17 @@ class ExecutionChecker(ResultVisitor): else: if any(row[1:]): txt_table.add_row(row) + txt_table.set_style(prettytable.MSWORD_FRIENDLY) txt_table.align["Name"] = "l" txt_table.align["Calls"] = "r" txt_table.align["Vectors"] = "r" txt_table.align["Suspends"] = "r" txt_table.align["Clocks"] = "r" - text += txt_table.get_html_string(sortby="Name") + '\n' + text += txt_table.get_string(sortby="Name") + '\n' - text = text.replace('\n', '').replace('\r', '') + text = text.replace('\n', ' |br| ').replace('\r', '').\ + replace('"', "'") try: self._data["tests"][self._test_ID]["show-run"] += " |br| " self._data["tests"][self._test_ID]["show-run"] += \