]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
Minor fixes and additional graphs
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index b75bdc4f87d09962fae7a0e9b4645faad92f87a6..23980263dfdd9504d0d1c1e67f71eece49b80883 100755 (executable)
@@ -169,9 +169,7 @@ class Test(object):
                 if comment >= 0:
                     l = l[:comment-1]
                 if l.find("cmdline=") == 0:
-                    print l
                     l = "<abbr title=%s>cmdline=...</abbr>" % str(l[8:])
-                    print l
                 return l
             lines = [fixupLine(l) for l in lines]
             print >>html, "<td><h4>%s</h4>%s</td>" % (i, "<br />".join(lines))
@@ -217,6 +215,7 @@ class Test(object):
         additionalImgs = glob.glob("graph?*.png")
         if additionalImgs: print >>html, "<h3>Additional graphs</h3>"
         for i in additionalImgs:
+            print >>html, "<h4>%s</h4>" % i[5:-4]
             print >>html, self.fullImgLink(i)
         os.chdir(cwd)