Lines Matching refs:testruns
3266 def appendIncompleteTraceLog(testruns): argument
3268 testcnt = len(testruns)
3271 for data in testruns:
3443 testruns, testdata = [], []
3462 testruns.append(testrun)
3724 for test in testruns:
3748 for i in range(len(testruns)):
3749 test = testruns[i]
3753 if i < len(testruns) - 1:
3754 tle = testruns[i+1].data.start
3897 testruns = []
3914 testruns.append(data)
3915 data = Data(len(testruns))
3935 testruns.append(data)
3936 if len(testruns) < 1:
3941 for data in testruns:
3952 return testruns
4308 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4320 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
4381 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4478 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4483 for data in testruns:
4544 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4547 total = len(testruns)
4606 def createHTML(testruns, testfail): argument
4607 if len(testruns) < 1:
4612 for data in testruns:
4616 data.trimFreezeTime(testruns[-1].tSuspended)
4651 devtl.createHeader(sysvals, testruns[0].stamp)
4654 for data in testruns:
4664 if(len(testruns) > 1):
4687 if(len(testruns) > 1):
4721 t0 = testruns[0].start
4722 tMax = testruns[-1].end
4730 for data in testruns:
4756 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4760 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4766 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4767 for data in testruns:
4787 if len(testruns) > 1 and data.testnumber == 0:
4788 mMax = testruns[1].start
4884 phasedef = testruns[-1].phasedef
4898 addCSS(hf, sysvals, len(testruns), kerror)
4905 for data in testruns:
4925 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4926 data = testruns[sysvals.cgtest]
4928 data = testruns[-1]
4954 addScriptCode(hf, testruns)
5061 def addScriptCode(hf, testruns): argument
5062 t0 = testruns[0].start * 1000
5063 tMax = testruns[-1].end * 1000
5066 for data in testruns:
6133 testruns, error = parseTraceLog(live)
6135 for data in testruns:
6138 testruns = loadKernelLog()
6139 for data in testruns:
6142 appendIncompleteTraceLog(testruns)
6145 return (testruns, {'error': 'timeline generation failed'})
6153 for data in testruns:
6171 for data in testruns:
6174 if len(testruns) < 1:
6176 return (testruns, {'error': 'timeline generation failed'})
6178 createHTML(testruns, error)
6181 data = testruns[0]
6188 return (testruns, stamp)
6207 testruns, stamp = processData()
6239 testruns, stamp = processData(True, quiet)
6240 for data in testruns:
6440 target, issues, testruns = '', [], []
6451 testruns.append(data)
6462 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6464 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6466 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)