Lines Matching refs:testruns

3246 def appendIncompleteTraceLog(testruns):  argument
3248 testcnt = len(testruns)
3251 for data in testruns:
3423 testruns, testdata = [], []
3442 testruns.append(testrun)
3704 for test in testruns:
3728 for i in range(len(testruns)):
3729 test = testruns[i]
3733 if i < len(testruns) - 1:
3734 tle = testruns[i+1].data.start
3877 testruns = []
3894 testruns.append(data)
3895 data = Data(len(testruns))
3915 testruns.append(data)
3916 if len(testruns) < 1:
3921 for data in testruns:
3932 return testruns
4286 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4298 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
4359 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4456 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4461 for data in testruns:
4522 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4525 total = len(testruns)
4584 def createHTML(testruns, testfail): argument
4585 if len(testruns) < 1:
4590 for data in testruns:
4594 data.trimFreezeTime(testruns[-1].tSuspended)
4629 devtl.createHeader(sysvals, testruns[0].stamp)
4632 for data in testruns:
4642 if(len(testruns) > 1):
4665 if(len(testruns) > 1):
4699 t0 = testruns[0].start
4700 tMax = testruns[-1].end
4708 for data in testruns:
4734 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4738 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4744 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4745 for data in testruns:
4765 if len(testruns) > 1 and data.testnumber == 0:
4766 mMax = testruns[1].start
4862 phasedef = testruns[-1].phasedef
4876 addCSS(hf, sysvals, len(testruns), kerror)
4883 for data in testruns:
4903 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4904 data = testruns[sysvals.cgtest]
4906 data = testruns[-1]
4932 addScriptCode(hf, testruns)
5039 def addScriptCode(hf, testruns): argument
5040 t0 = testruns[0].start * 1000
5041 tMax = testruns[-1].end * 1000
5044 for data in testruns:
6112 testruns, error = parseTraceLog(live)
6114 for data in testruns:
6117 testruns = loadKernelLog()
6118 for data in testruns:
6121 appendIncompleteTraceLog(testruns)
6124 return (testruns, {'error': 'timeline generation failed'})
6132 for data in testruns:
6150 for data in testruns:
6153 if len(testruns) < 1:
6155 return (testruns, {'error': 'timeline generation failed'})
6157 createHTML(testruns, error)
6160 data = testruns[0]
6167 return (testruns, stamp)
6186 testruns, stamp = processData()
6218 testruns, stamp = processData(True, quiet)
6219 for data in testruns:
6419 target, issues, testruns = '', [], []
6430 testruns.append(data)
6441 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6443 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6445 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)