Lines Matching refs:testruns
2436 def appendIncompleteTraceLog(testruns): argument
2438 testcnt = len(testruns)
2441 for data in testruns:
2658 testruns = []
2721 testruns.append(testrun)
2966 for test in testruns:
2983 for i in range(len(testruns)):
2984 test = testruns[i]
2988 if i < len(testruns) - 1:
2989 tle = testruns[i+1].data.start
3112 testruns = []
3140 testruns.append(data)
3141 data = Data(len(testruns))
3159 testruns.append(data)
3160 if len(testruns) < 1:
3165 for data in testruns:
3179 return testruns
3498 def createHTMLSummarySimple(testruns, htmlfile, folder): argument
3525 for data in sorted(testruns, key=lambda v:(v['mode'], v['host'], v['kernel'], v['time'])):
3578 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (folder, len(testruns), ', '.join(desc))
3671 def createHTML(testruns, testfail): argument
3672 if len(testruns) < 1:
3677 for data in testruns:
3680 data.normalizeTime(testruns[-1].tSuspended)
3716 devtl.createHeader(sysvals, testruns[0].stamp)
3719 for data in testruns:
3732 if(len(testruns) > 1):
3743 if(len(testruns) > 1):
3763 if(len(testruns) > 1):
3777 t0 = testruns[0].start
3778 tMax = testruns[-1].end
3786 for data in testruns:
3812 d = testruns[0].addHorizontalDivider(msg, testruns[-1].end)
3816 d = testruns[0].addHorizontalDivider('asynchronous kernel threads', testruns[-1].end)
3822 devtl.createZoomBox(sysvals.suspendmode, len(testruns))
3831 for data in testruns:
3844 if len(testruns) > 1 and data.testnumber == 0:
3845 mMax = testruns[1].start
3945 data = testruns[-1]
3961 addCSS(hf, sysvals, len(testruns), kerror)
3968 for data in testruns:
3988 if sysvals.cgtest >= 0 and len(testruns) > sysvals.cgtest:
3989 data = testruns[sysvals.cgtest]
3991 data = testruns[-1]
4017 addScriptCode(hf, testruns)
4124 def addScriptCode(hf, testruns): argument
4125 t0 = testruns[0].start * 1000
4126 tMax = testruns[-1].end * 1000
4129 for data in testruns:
5292 testruns, error = parseTraceLog(live)
5294 for data in testruns:
5297 testruns = loadKernelLog()
5298 for data in testruns:
5301 appendIncompleteTraceLog(testruns)
5303 for data in testruns:
5306 for data in testruns:
5309 if len(testruns) < 1:
5310 return (testruns, {'error': 'timeline generation failed'})
5312 createHTML(testruns, error)
5314 data = testruns[0]
5321 return (testruns, stamp)
5337 testruns, stamp = processData(False)
5354 testruns, stamp = processData(True)
5355 for data in testruns:
5407 testruns = []
5442 testruns.append(data)
5445 createHTMLSummarySimple(testruns, outfile, inpath)