Report: Remove *CHK tests from report 72/9372/2
authorTibor Frank <tifrank@cisco.com>
Fri, 10 Nov 2017 11:38:34 +0000 (12:38 +0100)
committerTibor Frank <tifrank@cisco.com>
Fri, 10 Nov 2017 11:40:48 +0000 (11:40 +0000)
Change-Id: Ic9f40ca37569ed03902b617669e3df0c2ba42f3a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
resources/tools/presentation/generator_files.py
resources/tools/presentation/specification_parser.py

index 2ee00d1..1cd1b6d 100644 (file)
@@ -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():
     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"]
             if len(suite_longname.split(".")) <= file_spec["data-start-level"]:
                 continue
             suite_name = suite["name"]
index 3404024..501f9f1 100644 (file)
@@ -558,9 +558,6 @@ class Specification(object):
         self._parse_output()
         self._parse_static()
         self._parse_elements()
         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)))
 
         logging.debug("Specification: \n{}".
                       format(pformat(self._specification)))