diff options
author | tekireeva <tekireeva@yandex-team.com> | 2023-07-27 01:02:25 +0300 |
---|---|---|
committer | tekireeva <tekireeva@yandex-team.com> | 2023-07-27 01:02:25 +0300 |
commit | d60ec279fcef8eb8b93bfd4b24bb22ffb674b588 (patch) | |
tree | cccabea5e5924d866fa54823853fced91be7978b | |
parent | 1a4a60e41168633dda431b9ccfefb5e519420375 (diff) | |
download | ydb-d60ec279fcef8eb8b93bfd4b24bb22ffb674b588.tar.gz |
Add source dir to DATA for fuzz tests
-rw-r--r-- | build/plugins/ytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py index 78f8efe387..c8dfa956aa 100644 --- a/build/plugins/ytest.py +++ b/build/plugins/ytest.py @@ -447,7 +447,7 @@ def onadd_ytest(unit, *args): } flat_args, spec_args = _common.sort_by_keywords(keywords, args) - is_implicit_data_needed = flat_args[1] in ("unittest.py", "gunittest", "g_benchmark", "go.test", "boost.test") + is_implicit_data_needed = flat_args[1] in ("unittest.py", "gunittest", "g_benchmark", "go.test", "boost.test", "fuzz.test") if is_implicit_data_needed and unit.get('ADD_SRCDIR_TO_TEST_DATA') == "yes": unit.ondata_files(_common.get_norm_unit_path(unit)) |