aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/input_data_parser.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-08-16 09:41:06 +0200
committerTibor Frank <tifrank@cisco.com>2019-08-16 09:41:06 +0200
commit859a3f724c077f9db9a2f40f76b6dad27f199003 (patch)
tree4571f3e9356ec9640970e3f8f7722fa7e71878a9 /resources/tools/presentation/input_data_parser.py
parent073d7783a477e2b622ceba070e67f41ff51dac83 (diff)
PAL: Process show runtime output 3
- format the table Change-Id: I871251a8329e5d52c527c93afe35d875bddaed0c Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/input_data_parser.py')
-rw-r--r--resources/tools/presentation/input_data_parser.py6
1 files changed, 4 insertions, 2 deletions
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"] += \