From 6c8db1a80766183929437f65afa093d0ae0d3885 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Mon, 19 Mar 2012 11:31:33 -0700 Subject: [PATCH] suite: more results logging --- teuthology/suite.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/suite.py b/teuthology/suite.py index ad39edd2995b4..9ebf368c08178 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -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 = [] -- 2.39.5