Implements option --time-limit (#5502)

This commit is contained in:
Miroslav Stampar
2023-09-28 20:34:52 +02:00
parent c629374858
commit e0ec2fcdbd
6 changed files with 16 additions and 3 deletions

View File

@@ -736,6 +736,9 @@ def cmdLineParser(argv=None):
general.add_argument("--test-skip", dest="testSkip",
help="Skip tests by payloads and/or titles (e.g. BENCHMARK)")
general.add_argument("--time-limit", dest="timeLimit", type=float,
help="Run with a time limit in seconds (e.g. 3600)")
general.add_argument("--web-root", dest="webRoot",
help="Web server document root directory (e.g. \"/var/www\")")