From a260da1277a18e50a61b38827bc8d2784da58a8b Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 7 Jul 2011 16:19:26 -0700 Subject: [PATCH] teuthology-suite: pass --lock and --block to teuthology --- teuthology/suite.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/teuthology/suite.py b/teuthology/suite.py index 6bdb80cd2af76..fbbbb3d7c62a4 100644 --- a/teuthology/suite.py +++ b/teuthology/suite.py @@ -21,8 +21,7 @@ Running the suite means running teuthology for every configuration combination generated by taking one config snippet from each facet. Any config files passed on the command line will be used for every -combination, and will override anything in the suite. This is most -useful for specifying actual machines to run on. +combination, and will override anything in the suite. """) parser.add_argument( '-v', '--verbose', @@ -97,11 +96,13 @@ useful for specifying actual machines to run on. if not os.path.exists(archive): break time.sleep(1) - arg.append('--archive={path}'.format(path=archive)) - - arg.append('--description=\'{desc}\''.format(desc=description)) - - arg.append('--') + arg.extend([ + '--lock', + '--block', + '--archive={path}'.format(path=archive), + '--description=\'{desc}\''.format(desc=description), + '--', + ]) arg.extend(path for facet, name, path in configs) arg.extend(args.config) -- 2.39.5