From: Sage Weil Date: Tue, 28 Jun 2011 21:44:52 +0000 (-0700) Subject: suite: set each run description to combination of facet names X-Git-Tag: v0.94.10~27^2^2~364^2~1679 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=770edc3a0b2bb307c059d5736608c7f04f375da8;p=ceph.git suite: set each run description to combination of facet names --- diff --git a/teuthology/suite.py b/teuthology/suite.py index 691e235781f1..3f7ded19ae4c 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -79,10 +79,10 @@ useful for specifying actual machines to run on. for f in facets ) for configs in itertools.product(*facet_configs): - log.info( - 'Running teuthology with facets %s', - ' '.join('{facet}:{name}'.format(facet=facet, name=name) + description=' '.join('{facet}:{name}'.format(facet=facet, name=name) for facet, name, path in configs) + log.info( + 'Running teuthology with facets %s', description ) arg = [ os.path.join(os.path.dirname(sys.argv[0]), 'teuthology'), @@ -98,6 +98,8 @@ useful for specifying actual machines to run on. time.sleep(1) arg.append('--archive={path}'.format(path=archive)) + arg.append('--description=\'{desc}\''.format(desc=description)) + arg.append('--') arg.extend(path for facet, name, path in configs) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index d0c864497d31..5a8aed71a89f 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -552,6 +552,7 @@ def mds(ctx, config): '-f', '-i', id_, '-c', '/tmp/cephtest/ceph.conf', +# '--debug-mds','20', ], logger=log.getChild('mds.{id}'.format(id=id_)), stdin=run.PIPE,