From ec95ee25c38b9bfbfca995a27424a861cd95d52a Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 1 Jul 2014 12:21:45 -0600 Subject: [PATCH] Rename suite_base to suite_dir Signed-off-by: Zack Cerza --- scripts/suite.py | 2 +- teuthology/suite.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/suite.py b/scripts/suite.py index 2a9676d75b650..5646363247e9c 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 dfb137508bc18..7dc59d4cbe5c8 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) -- 2.39.5