Lines Matching refs:testruns

3070 def appendIncompleteTraceLog(testruns):  argument
3072 testcnt = len(testruns)
3075 for data in testruns:
3193 testruns, testdata = [], []
3231 testruns.append(testrun)
3473 for test in testruns:
3497 for i in range(len(testruns)):
3498 test = testruns[i]
3502 if i < len(testruns) - 1:
3503 tle = testruns[i+1].data.start
3642 testruns = []
3658 testruns.append(data)
3659 data = Data(len(testruns))
3673 testruns.append(data)
3674 if len(testruns) < 1:
3679 for data in testruns:
3693 return testruns
4051 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4063 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
4124 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4221 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4226 for data in testruns:
4287 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4290 total = len(testruns)
4349 def createHTML(testruns, testfail): argument
4350 if len(testruns) < 1:
4355 for data in testruns:
4359 data.trimFreezeTime(testruns[-1].tSuspended)
4394 devtl.createHeader(sysvals, testruns[0].stamp)
4397 for data in testruns:
4407 if(len(testruns) > 1):
4430 if(len(testruns) > 1):
4464 t0 = testruns[0].start
4465 tMax = testruns[-1].end
4473 for data in testruns:
4499 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4503 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4509 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4510 for data in testruns:
4530 if len(testruns) > 1 and data.testnumber == 0:
4531 mMax = testruns[1].start
4630 phasedef = testruns[-1].phasedef
4644 addCSS(hf, sysvals, len(testruns), kerror)
4651 for data in testruns:
4671 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4672 data = testruns[sysvals.cgtest]
4674 data = testruns[-1]
4700 addScriptCode(hf, testruns)
4807 def addScriptCode(hf, testruns): argument
4808 t0 = testruns[0].start * 1000
4809 tMax = testruns[-1].end * 1000
4812 for data in testruns:
5921 testruns, error = parseTraceLog(live)
5923 for data in testruns:
5926 testruns = loadKernelLog()
5927 for data in testruns:
5930 appendIncompleteTraceLog(testruns)
5933 return (testruns, {'error': 'timeline generation failed'})
5941 for data in testruns:
5959 for data in testruns:
5962 if len(testruns) < 1:
5964 return (testruns, {'error': 'timeline generation failed'})
5966 createHTML(testruns, error)
5969 data = testruns[0]
5976 return (testruns, stamp)
5995 testruns, stamp = processData()
6014 testruns, stamp = processData(True, quiet)
6015 for data in testruns:
6202 target, issues, testruns = '', [], []
6213 testruns.append(data)
6224 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6226 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6228 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)