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'])):
4382 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4479 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4484 for data in testruns:
4545 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4548 total = len(testruns)
4607 def createHTML(testruns, testfail): argument
4608 if len(testruns) < 1:
4613 for data in testruns:
4617 data.trimFreezeTime(testruns[-1].tSuspended)
4652 devtl.createHeader(sysvals, testruns[0].stamp)
4655 for data in testruns:
4665 if(len(testruns) > 1):
4688 if(len(testruns) > 1):
4722 t0 = testruns[0].start
4723 tMax = testruns[-1].end
4731 for data in testruns:
4757 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4761 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4767 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4768 for data in testruns:
4788 if len(testruns) > 1 and data.testnumber == 0:
4789 mMax = testruns[1].start
4885 phasedef = testruns[-1].phasedef
4899 addCSS(hf, sysvals, len(testruns), kerror)
4906 for data in testruns:
4926 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4927 data = testruns[sysvals.cgtest]
4929 data = testruns[-1]
4955 addScriptCode(hf, testruns)
5062 def addScriptCode(hf, testruns): argument
5063 t0 = testruns[0].start * 1000
5064 tMax = testruns[-1].end * 1000
5068 for data in testruns:
6152 testruns, error = parseTraceLog(live)
6154 for data in testruns:
6157 testruns = loadKernelLog()
6158 for data in testruns:
6161 appendIncompleteTraceLog(testruns)
6164 return (testruns, {'error': 'timeline generation failed'})
6172 for data in testruns:
6190 for data in testruns:
6193 if len(testruns) < 1:
6195 return (testruns, {'error': 'timeline generation failed'})
6197 createHTML(testruns, error)
6200 data = testruns[0]
6207 return (testruns, stamp)
6226 testruns, stamp = processData()
6258 testruns, stamp = processData(True, quiet)
6259 for data in testruns:
6468 target, issues, testruns = '', [], []
6479 testruns.append(data)
6490 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6492 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6494 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)