Lines Matching refs:testruns
2959 def appendIncompleteTraceLog(testruns): argument
2961 testcnt = len(testruns)
2964 for data in testruns:
3094 testruns = []
3147 testruns.append(testrun)
3361 for test in testruns:
3385 for i in range(len(testruns)):
3386 test = testruns[i]
3390 if i < len(testruns) - 1:
3391 tle = testruns[i+1].data.start
3520 testruns = []
3536 testruns.append(data)
3537 data = Data(len(testruns))
3551 testruns.append(data)
3552 if len(testruns) < 1:
3557 for data in testruns:
3571 return testruns
3927 def createHTMLSummarySimple(testruns, htmlfile, title): argument
3939 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
4000 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4088 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4093 for data in testruns:
4154 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4157 total = len(testruns)
4216 def createHTML(testruns, testfail): argument
4217 if len(testruns) < 1:
4222 for data in testruns:
4226 data.trimFreezeTime(testruns[-1].tSuspended)
4262 devtl.createHeader(sysvals, testruns[0].stamp)
4265 for data in testruns:
4278 if(len(testruns) > 1):
4289 if(len(testruns) > 1):
4309 if(len(testruns) > 1):
4323 t0 = testruns[0].start
4324 tMax = testruns[-1].end
4332 for data in testruns:
4358 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
4362 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
4368 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
4369 for data in testruns:
4389 if len(testruns) > 1 and data.testnumber == 0:
4390 mMax = testruns[1].start
4490 phasedef = testruns[-1].phasedef
4504 addCSS(hf, sysvals, len(testruns), kerror)
4511 for data in testruns:
4531 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
4532 data = testruns[sysvals.cgtest]
4534 data = testruns[-1]
4560 addScriptCode(hf, testruns)
4667 def addScriptCode(hf, testruns): argument
4668 t0 = testruns[0].start * 1000
4669 tMax = testruns[-1].end * 1000
4672 for data in testruns:
5789 testruns, error = parseTraceLog(live)
5791 for data in testruns:
5794 testruns = loadKernelLog()
5795 for data in testruns:
5798 appendIncompleteTraceLog(testruns)
5808 for data in testruns:
5840 for data in testruns:
5843 if len(testruns) < 1:
5845 return (testruns, {'error': 'timeline generation failed'})
5847 createHTML(testruns, error)
5849 data = testruns[0]
5856 return (testruns, stamp)
5875 testruns, stamp = processData(False)
5894 testruns, stamp = processData(True)
5895 for data in testruns:
6073 testruns = []
6082 testruns.append(data)
6091 createHTMLSummarySimple(testruns, os.path.join(outpath, 'summary.html'), title)
6093 createHTMLDeviceSummary(testruns, os.path.join(outpath, 'summary-devices.html'), title)
6095 createHTMLIssuesSummary(testruns, issues, os.path.join(outpath, 'summary-issues.html'), title)