diff options
author | prettyboy <prettyboy@yandex-team.com> | 2023-10-19 18:07:41 +0300 |
---|---|---|
committer | prettyboy <prettyboy@yandex-team.com> | 2023-10-19 19:17:14 +0300 |
commit | af28e86f3a8a7ef431a470291491fd2c0ddfe582 (patch) | |
tree | 1f149eab914bcc5cb7b89abf8ed132684fc6f781 /build/plugins | |
parent | ae2a0658c32a7e4b1e9686930b0f70b83c74ff82 (diff) | |
download | ydb-af28e86f3a8a7ef431a470291491fd2c0ddfe582.tar.gz |
[devtools/ya] Support BENCHMARK_OPTS macro
Diffstat (limited to 'build/plugins')
-rw-r--r-- | build/plugins/ytest.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py index 2aed37e205..180f8d5c05 100644 --- a/build/plugins/ytest.py +++ b/build/plugins/ytest.py @@ -566,8 +566,10 @@ def onadd_ytest(unit, *args): return else: test_record["TEST-NAME"] += "_bench" - - if flat_args[1] == 'fuzz.test' and unit.get('FUZZING') == 'yes': + elif flat_args[1] in ("g_benchmark", "y_benchmark"): + benchmark_opts = get_unit_list_variable(unit, 'BENCHMARK_OPTS_VALUE') + test_record['BENCHMARK-OPTS'] = serialize_list(benchmark_opts) + elif flat_args[1] == 'fuzz.test' and unit.get('FUZZING') == 'yes': test_record['FUZZING'] = '1' # use all cores if fuzzing requested test_record['REQUIREMENTS'] = serialize_list( |