summaryrefslogtreecommitdiff
path: root/tests/scripts/py/test_driver.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/py/test_driver.py')
-rwxr-xr-xtests/scripts/py/test_driver.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/tests/scripts/py/test_driver.py b/tests/scripts/py/test_driver.py
index f9c48e11f..39e5315f6 100755
--- a/tests/scripts/py/test_driver.py
+++ b/tests/scripts/py/test_driver.py
@@ -69,6 +69,7 @@ def get_parsed_options():
dest="benchmark_on",
default=False,
help="(default=off) run benchmark")
+ # TODO Remove deprecated --benchmark_acl option
parser.add_argument(
"--benchmark_acl",
action="store_true",
@@ -270,14 +271,6 @@ def run_benchmarkop(options):
os.system(cmd)
-def run_benchmarkacl(options):
- cmd = "{artifactpath}/tests/scripts/run_benchmark_acl.sh \
- --reportdir={reportdir}/benchmark \
- --bindir={artifactpath}/Product/out/bin".format(
- reportdir=options.reportdir, artifactpath=options.artifactpath)
- os.system(cmd)
-
-
def make_json_for_benchmark_result(options):
cmd = "source {artifactpath}/tests/scripts/print_to_json.sh && ".format(
artifactpath=options.artifactpath)
@@ -377,10 +370,6 @@ def main():
if options.benchmark_on:
run_benchmark(options)
- # benchmark_acl
- if options.benchmarkacl_on:
- run_benchmarkacl(options)
-
# benchmark_op
if options.benchmarkop_on:
run_benchmarkop(options)