Update: plot script for new tags
[csit.git] / resources / tools / robot_output_parser.py
index fb08598..dc65542 100755 (executable)
@@ -86,13 +86,13 @@ class ExecutionChecker(ResultVisitor):
         :type test: Test
         :return: Nothing.
         """
-        if any("PERFTEST_LONG" in tag for tag in test.tags):
+        if any("NDRPDRDISC" in tag for tag in test.tags):
             if test.status == 'PASS':
                 tags = []
                 for tag in test.tags:
                     tags.append(tag)
                 test_elem = ET.SubElement(self.root,
-                                          test.parent.name.replace(" ", ""))
+                                          "S"+test.parent.name.replace(" ", ""))
                 test_elem.attrib['name'] = test.parent.name
                 test_elem.attrib['framesize'] = str(re.search(\
                     self.tc_regexp, test.name).group(2))