]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
suite: more results logging
authorJosh Durgin <josh.durgin@dreamhost.com>
Mon, 19 Mar 2012 18:31:33 +0000 (11:31 -0700)
committerJosh Durgin <josh.durgin@dreamhost.com>
Mon, 19 Mar 2012 18:31:33 +0000 (11:31 -0700)
teuthology/suite.py

index ad39edd2995b478ae93b3516c7922b88c1399260..9ebf368c081782f5ffa9c31e13b8fbbdbb48db99 100644 (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 = []