From a00182db8ebf9c1589f2a556760c9ae901160bc2 Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Tue, 22 May 2018 13:40:09 +0300 Subject: [PATCH] ts: run.py passthrough --test_* args "as is" to allow pass `--test_bigdata` via run.py --- modules/ts/misc/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ts/misc/run.py b/modules/ts/misc/run.py index d25704bfed..74b353a532 100755 --- a/modules/ts/misc/run.py +++ b/modules/ts/misc/run.py @@ -56,7 +56,7 @@ if __name__ == "__main__": log.setLevel(logging.DEBUG if args.verbose else logging.INFO) - test_args = [a for a in other_args if a.startswith("--perf_") or a.startswith("--gtest_")] + test_args = [a for a in other_args if a.startswith("--perf_") or a.startswith("--test_") or a.startswith("--gtest_")] bad_args = [a for a in other_args if a not in test_args] if len(bad_args) > 0: log.error("Error: Bad arguments: %s", bad_args)