|
@@ -146,7 +146,8 @@ def main(argv=None):
|
|
|
help='''Affects : With unified, all server software is installed into a single directory.
|
|
|
With pertest each test gets its own installs directory, but installation takes longer''')
|
|
|
parser.add_argument('--install-only', action='store_true', default=False, help='Do not run benchmark or verification, just install and exit')
|
|
|
- parser.add_argument('--clean', choices=['results'], help='Removes the results directory', default=None)
|
|
|
+ parser.add_argument('--clean', action='store_true', help='Removes the results directory')
|
|
|
+ parser.add_argument('--clean-all', action='store_true', dest='clean_all', help='Removes the results and installs directories')
|
|
|
|
|
|
# Test options
|
|
|
parser.add_argument('--test', nargs='+', help='names of tests to run')
|
|
@@ -212,4 +213,3 @@ def main(argv=None):
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
sys.exit(main())
|
|
|
-kain
|