Lines Matching refs:testruns
3290 def appendIncompleteTraceLog(testruns): argument
3292 testcnt = len(testruns)
3295 for data in testruns:
3467 testruns, testdata = [], []
3486 testruns.append(testrun)
3748 for test in testruns:
3772 for i in range(len(testruns)):
3773 test = testruns[i]
3777 if i < len(testruns) - 1:
3778 tle = testruns[i+1].data.start
3921 testruns = []
3938 testruns.append(data)
3939 data = Data(len(testruns))
3959 testruns.append(data)
3960 if len(testruns) < 1:
3965 for data in testruns:
3976 return testruns
4333 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4345 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
4407 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4504 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4509 for data in testruns:
4570 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4573 total = len(testruns)
4632 def createHTML(testruns, testfail): argument
4633 if len(testruns) < 1:
4638 for data in testruns:
4642 data.trimFreezeTime(testruns[-1].tSuspended)
4677 devtl.createHeader(sysvals, testruns[0].stamp)
4680 for data in testruns:
4690 if(len(testruns) > 1):
4713 if(len(testruns) > 1):
4747 t0 = testruns[0].start
4748 tMax = testruns[-1].end
4756 for data in testruns:
4782 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4786 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4792 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4793 for data in testruns:
4813 if len(testruns) > 1 and data.testnumber == 0:
4814 mMax = testruns[1].start
4910 phasedef = testruns[-1].phasedef
4924 addCSS(hf, sysvals, len(testruns), kerror)
4931 for data in testruns:
4951 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4952 data = testruns[sysvals.cgtest]
4954 data = testruns[-1]
4980 addScriptCode(hf, testruns)
5087 def addScriptCode(hf, testruns): argument
5088 t0 = testruns[0].start * 1000
5089 tMax = testruns[-1].end * 1000
5093 for data in testruns:
6181 testruns, error = parseTraceLog(live)
6183 for data in testruns:
6186 testruns = loadKernelLog()
6187 for data in testruns:
6190 appendIncompleteTraceLog(testruns)
6193 return (testruns, {'error': 'timeline generation failed'})
6201 for data in testruns:
6219 for data in testruns:
6222 if len(testruns) < 1:
6224 return (testruns, {'error': 'timeline generation failed'})
6226 createHTML(testruns, error)
6229 data = testruns[0]
6236 return (testruns, stamp)
6255 testruns, stamp = processData()
6287 testruns, stamp = processData(True, quiet)
6288 for data in testruns:
6497 target, issues, testruns = '', [], []
6508 testruns.append(data)
6519 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6521 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6523 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)