]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
Make page names shorter
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index b75bdc4f87d09962fae7a0e9b4645faad92f87a6..db2d5e5a646ff777e791a9bce5fe9c2e2f08be7f 100755 (executable)
@@ -23,6 +23,8 @@ class DimValue(object):
        return "DimValue(%s, %s)" % (repr(self.dim), repr(self.value))
     def htmlTableHeading(self):
        return self.dim.htmlTableHeading(self.value)
+    def index(self):
+        return self.dim.sortedKeys.index(self.value)
 
 class DimValues(list):
     def replace(self, val):
@@ -169,9 +171,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 +217,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)
         
@@ -336,7 +337,7 @@ class Page(object):
        self.tests = tests
     def getName(self):
        return "%s-vs-%s-for-%s.html"%(self.dimy.type, self.dimx.type,
-                                       "-".join([v.value for v in self.valsOther]))
+                                       "-".join(["%02d"%v.index() for v in self.valsOther]))
     def generate(self):
        html = open(self.getName(), "w")
        title = "CAN gateway timing analysis"