aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2017-11-10 12:38:34 +0100
committerTibor Frank <tifrank@cisco.com>2017-11-10 11:40:48 +0000
commitc4f32cdc7542941815a75a2de5a09ed9cc0de0d9 (patch)
treeb6050f650189381ac4bed8d939ab1be3c374ae4d
parent7bfb36dfd9284bbca10881e31e14108c7d468b7c (diff)
Report: Remove *CHK tests from report
Change-Id: Ic9f40ca37569ed03902b617669e3df0c2ba42f3a Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r--resources/tools/presentation/generator_files.py2
-rw-r--r--resources/tools/presentation/specification_parser.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/resources/tools/presentation/generator_files.py b/resources/tools/presentation/generator_files.py
index 2ee00d1112..1cd1b6dfbb 100644
--- a/resources/tools/presentation/generator_files.py
+++ b/resources/tools/presentation/generator_files.py
@@ -151,6 +151,8 @@ def file_merged_test_results(file_spec, input_data):
with open(file_name, "w") as file_handler:
file_handler.write(rst_header)
for suite_longname, suite in suites.iteritems():
+ if "ndrchk" in suite_longname or "pdrchk" in suite_longname:
+ continue
if len(suite_longname.split(".")) <= file_spec["data-start-level"]:
continue
suite_name = suite["name"]
diff --git a/resources/tools/presentation/specification_parser.py b/resources/tools/presentation/specification_parser.py
index 3404024a87..501f9f191a 100644
--- a/resources/tools/presentation/specification_parser.py
+++ b/resources/tools/presentation/specification_parser.py
@@ -558,9 +558,6 @@ class Specification(object):
self._parse_output()
self._parse_static()
self._parse_elements()
- print(self.tables)
- print(self.files)
- print(self.plots)
logging.debug("Specification: \n{}".
format(pformat(self._specification)))