summaryrefslogtreecommitdiffstats
path: root/library/cpp/testing
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/testing')
-rw-r--r--library/cpp/testing/common/env.cpp10
-rw-r--r--library/cpp/testing/common/env.h1
2 files changed, 0 insertions, 11 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");
}
diff --git a/library/cpp/testing/common/env.h b/library/cpp/testing/common/env.h
index 6cd840442f8..f9a5aff5d33 100644
--- a/library/cpp/testing/common/env.h
+++ b/library/cpp/testing/common/env.h
@@ -69,7 +69,6 @@ namespace NPrivate {
void AddTestParam(TStringBuf name, TStringBuf value);
bool IsRunningFromTest;
- TString ArcadiaTestsDataDir;
TString SourceRoot;
TString BuildRoot;
TString WorkPath;