aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/common/env.cpp
diff options
context:
space:
mode:
authorsay <say@yandex-team.com>2025-04-07 18:46:34 +0300
committersay <say@yandex-team.com>2025-04-07 18:59:56 +0300
commit2ec92416296dc1af11b6b60cc53e18cca4933487 (patch)
tree24e335b7754d00368e6338227df86461d2f6394e /library/cpp/testing/common/env.cpp
parent02d6ca62a11a5f602e07ba3ef7cdbd1808a38db6 (diff)
downloadydb-2ec92416296dc1af11b6b60cc53e18cca4933487.tar.gz
Remove arcadia_test_data
commit_hash:0daacd6f5a9880a3a29a2c32a039e41407266063
Diffstat (limited to 'library/cpp/testing/common/env.cpp')
-rw-r--r--library/cpp/testing/common/env.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/library/cpp/testing/common/env.cpp b/library/cpp/testing/common/env.cpp
index 1440186d789..41bf2b20aba 100644
--- a/library/cpp/testing/common/env.cpp
+++ b/library/cpp/testing/common/env.cpp
@@ -141,7 +141,6 @@ namespace NPrivate {
void TTestEnv::ReInitialize() {
IsRunningFromTest = false;
- ArcadiaTestsDataDir = "";
SourceRoot = "";
BuildRoot = "";
WorkPath = "";
@@ -171,11 +170,6 @@ namespace NPrivate {
BuildRoot = value->GetStringSafe("");
}
- value = context.GetValueByPath("runtime.atd_root");
- if (value) {
- ArcadiaTestsDataDir = value->GetStringSafe("");
- }
-
value = context.GetValueByPath("runtime.work_path");
if (value) {
WorkPath = value->GetStringSafe("");
@@ -249,10 +243,6 @@ namespace NPrivate {
BuildRoot = GetEnv("ARCADIA_BUILD_ROOT");
}
- if (!ArcadiaTestsDataDir) {
- ArcadiaTestsDataDir = GetEnv("ARCADIA_TESTS_DATA_DIR");
- }
-
if (!WorkPath) {
WorkPath = GetEnv("TEST_WORK_PATH");
}