suite: more results logging

This commit is contained in:
Josh Durgin 2012-03-19 11:31:33 -07:00
parent 7173a8afb6
commit 6c8db1a807

View File

@ -297,6 +297,7 @@ def _results(args):
and not os.path.exists(os.path.join(args.archive_dir, f, 'summary.yaml'))
]
starttime = time.time()
log.info('Waiting up to %d seconds for tests to finish...', args.timeout)
while running_tests and args.timeout > 0:
if os.path.exists(os.path.join(
args.archive_dir,
@ -308,6 +309,7 @@ def _results(args):
args.timeout)
break
time.sleep(10)
log.info('Tests finished! gathering results...')
descriptions = []
failures = []