From: Zack Cerza Date: Tue, 1 Jul 2014 18:21:45 +0000 (-0600) Subject: Rename suite_base to suite_dir X-Git-Tag: 1.1.0~1359^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ec95ee25c38b9bfbfca995a27424a861cd95d52a;p=teuthology.git Rename suite_base to suite_dir Signed-off-by: Zack Cerza --- diff --git a/scripts/suite.py b/scripts/suite.py index 2a9676d75..564636324 100644 --- a/scripts/suite.py +++ b/scripts/suite.py @@ -43,7 +43,7 @@ Standard arguments: [default: ubuntu] --suite-branch Use this suite branch instead of the ceph branch - --suite-base Use this alternative directory as-is when + --suite-dir Use this alternative directory as-is when assembling jobs from yaml fragments. This causes to be ignored. diff --git a/teuthology/suite.py b/teuthology/suite.py index dfb137508..7dc59d4cb 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -40,7 +40,7 @@ def main(args): machine_type = args['--machine-type'] distro = args['--distro'] suite_branch = args['--suite-branch'] or ceph_branch - suite_base = args['--suite-base'] + suite_dir = args['--suite-dir'] limit = int(args['--limit']) priority = int(args['--priority']) @@ -55,8 +55,8 @@ def main(args): name = make_run_name(nice_suite, ceph_branch, kernel_branch, kernel_flavor, machine_type) - if suite_base: - suite_repo_path = suite_base + if suite_dir: + suite_repo_path = suite_dir else: suite_repo_path = fetch_suite_repo(suite_branch, test_name=name)