Lines Matching refs:l
46 l = line.split()
47 if l[0] == 'failures':
48 if len(l)>1:
49 summary[l[0]] += l[1:]
50 elif l[0] == 'time':
51 if len(l)==1: continue
52 summary[l[0]] += float(l[1])
53 summary['cputime'] += float(l[2])
54 timesummary[cfile]=float(l[1])
55 cputimesummary[cfile]=float(l[2])
56 timelist.append(float(l[1]))
57 elif l[0] not in summary:
60 summary[l[0]] += int(l[1])
198 l = line.split()
199 if l[0] == 'time':
200 if len(l)==1: continue
201 testdata[pkgname]['problems'][probname][l[0]] = float(l[1])
202 testdata[pkgname][l[0]] += float(l[1])
203 elif l[0] in testdata[pkgname].keys():
205 num_int=int(l[1])
206 testdata[pkgname][l[0]] += num_int
207 if l[0] in ['failed']:
213 testdata[pkgname]['problems'][probname][l[0]] = True
214 if l[0] in ['skip'] and num_int:
215 testdata[pkgname]['problems'][probname][l[0]] = True