diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2024-03-21 19:55:54 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2024-03-21 20:08:40 +0300 |
commit | 37b755e3bb7576698ab37070517fbaecf6e7fd54 (patch) | |
tree | 395483b0b736487d6c34e3b54857ce6e4fb74e19 | |
parent | 166889b52cda6080ceb0ea8def1b77c5f8bde9b6 (diff) | |
download | ydb-37b755e3bb7576698ab37070517fbaecf6e7fd54.tar.gz |
Remove test_tool3
d962d536df9dcd8a3235b8d5d62d238e90e4ea93
-rw-r--r-- | build/plugins/lib/test_const/__init__.py | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/build/plugins/lib/test_const/__init__.py b/build/plugins/lib/test_const/__init__.py index 819a8b7012..b3c427d148 100644 --- a/build/plugins/lib/test_const/__init__.py +++ b/build/plugins/lib/test_const/__init__.py @@ -203,12 +203,27 @@ JSTYLE_RUNNER_LIB = 'JSTYLE_LIB_RESOURCE_GLOBAL' NODEJS_RESOURCE = 'NODEJS_RESOURCE_GLOBAL' NYC_RESOURCE = 'NYC_RESOURCE_GLOBAL' RUFF_RESOURCE = 'RUFF_RESOURCE_GLOBAL' -TEST_TOOL3_HOST = 'TEST_TOOL3_HOST_RESOURCE_GLOBAL' -TEST_TOOL3_HOST_LOCAL = 'TEST_TOOL3_HOST_LOCAL' + +# test_tool resource for host platform. +# source - build/platform/test_tool/host.ya.make.inc. +# always using this test_tool resource except 2 cases: +# 1. when we use TEST_TOOL_TARGET +# 2. when --test-tool-bin passed TEST_TOOL_HOST = 'TEST_TOOL_HOST_RESOURCE_GLOBAL' + +# path to locally built test_tool passed by --test-tool-bin opt TEST_TOOL_HOST_LOCAL = 'TEST_TOOL_HOST_LOCAL' + +# test_tool resource for target platform. +# source - build/platform/test_tool/ya.make. +# The only usage of this resource is running tests under ios emulator TEST_TOOL_TARGET = 'TEST_TOOL_TARGET_RESOURCE_GLOBAL' + +# path to locally built test_tool passed by --test-tool-bin opt +# always same as TEST_TOOL_HOST_LOCAL +# The only usage of this path is running tests under ios emulator TEST_TOOL_TARGET_LOCAL = 'TEST_TOOL_TARGET_LOCAL' + XCODE_TOOLS_RESOURCE = 'XCODE_TOOLS_ROOT_RESOURCE_GLOBAL' WINE_TOOL = 'WINE_TOOL_RESOURCE_GLOBAL' WINE32_TOOL = 'WINE32_TOOL_RESOURCE_GLOBAL' |