From: Samuel Just Date: Fri, 15 May 2015 18:10:37 +0000 (-0700) Subject: suite: print out subset chosen X-Git-Tag: 1.1.0~940^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F494%2Fhead;p=teuthology.git suite: print out subset chosen Signed-off-by: Samuel Just --- diff --git a/teuthology/suite.py b/teuthology/suite.py index bf2cf5950..12bd440d2 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -64,6 +64,7 @@ def main(args): if args['--subset']: # take input string '2/3' and turn into (2, 3) subset = tuple(map(int, args['--subset'].split('/'))) + log.info('Passed subset=%s/%s' % (str(subset[0]), str(subset[1]))) name = make_run_name(suite, ceph_branch, kernel_branch, kernel_flavor, machine_type)