Fix: Add prefix to elements of output-perf-xml
[csit.git] / resources / tools / robot_output_parser.py
index fb08598..d5e9b88 100755 (executable)
@@ -92,7 +92,7 @@ class ExecutionChecker(ResultVisitor):
                 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))