X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/e2f6ea0a1257b097e4e6278d742733b316d2f553..a4463e1ce99295ad665b9e45bb911e6e9f672ebb:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index cd4985b..94ca00e 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -155,6 +155,27 @@ class Test(object): return "
" % \ (pngName[:-4]+".pdf", pngName) + def htmlPrintStats(self, html): + cwd = os.getcwd() + os.chdir(self.path) + stats = glob.glob("*-stat.txt") + print >>html, "

Statistics

" + print >>html, "" + stats.sort() + for i in stats: + lines = open(i).readlines() + def fixupLine(l): + comment = l.find("#") + if comment >= 0: + l = l[:comment-1] + if l.find("cmdline=") == 0: + l = "cmdline=..." % str(l[8:]) + return l + lines = [fixupLine(l) for l in lines] + print >>html, "" % (i, "
".join(lines)) + print >>html, "

%s

%s
" + os.chdir(cwd) + def generateHtml(self): html = open(os.path.join(self.path, 'results.html'), "w") title = "CAN gateway timing analysis" @@ -188,20 +209,20 @@ class Test(object): print >>html, "" print >>html, self.fullImgLink("graph.png") - print >>html, "Raw data
" - print >>html, "Script source
" % (cdup+self.name+".sh.html") - print >>html, "Back to top
" % cdup - + self.htmlPrintStats(html) cwd = os.getcwd() os.chdir(self.path) additionalImgs = glob.glob("graph?*.png") - if additionalImgs: - print "XXX" - print >>html, "

Additional graphs

" + if additionalImgs: print >>html, "

Additional graphs

" for i in additionalImgs: print >>html, self.fullImgLink(i) os.chdir(cwd) + print >>html, "
" + print >>html, "Raw data
" + print >>html, "Script source
" % (cdup+self.name+".sh.html") + print >>html, "Back to top
" % cdup + html.close() class Space(list):