Lines Matching full:testname
176 def __init__(self, indent, status, subdir, testname, reason,
182 self.status = self.subdir = self.testname = self.reason = None
187 testname, reason,
202 if self.testname != 'reboot':
244 def make_dummy_abort(indent, subdir, testname, timestamp, reason):
250 @param testname: The test name.
260 if not testname:
261 testname = '----'
269 return msg % (subdir, testname, timestamp_field, reason)
377 if (line.testname is None and line.subdir is None
388 msg %= (running_client.status, running_client.testname)
398 line.testname,
404 running_test.testname, running_test.reason)
446 if line.testname is None and line.subdir is None:
451 if (line.testname is None and line.subdir is None
470 # Adjust the testname if this is a reboot.
471 if line.testname == 'reboot' and line.subdir is None:
472 line.testname = 'boot.%d' % boot_count
478 # If there was no testname, just use the subdir.
479 if line.testname is None:
480 line.testname = line.subdir
481 # If there was no testname or subdir, use 'CLIENT_JOB'.
482 if line.testname is None:
483 line.testname = 'CLIENT_JOB.%d' % job_count
496 line.testname,
506 if new_test.testname == ('boot.%d' % boot_count):
510 new_test.testname, new_test.reason)