Skip to content

Commit 2ec9241

Browse files
committed
Remove arcadia_test_data
commit_hash:0daacd6f5a9880a3a29a2c32a039e41407266063
1 parent 02d6ca6 commit 2ec9241

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

library/cpp/testing/common/env.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ namespace NPrivate {
141141

142142
void TTestEnv::ReInitialize() {
143143
IsRunningFromTest = false;
144-
ArcadiaTestsDataDir = "";
145144
SourceRoot = "";
146145
BuildRoot = "";
147146
WorkPath = "";
@@ -171,11 +170,6 @@ namespace NPrivate {
171170
BuildRoot = value->GetStringSafe("");
172171
}
173172

174-
value = context.GetValueByPath("runtime.atd_root");
175-
if (value) {
176-
ArcadiaTestsDataDir = value->GetStringSafe("");
177-
}
178-
179173
value = context.GetValueByPath("runtime.work_path");
180174
if (value) {
181175
WorkPath = value->GetStringSafe("");
@@ -249,10 +243,6 @@ namespace NPrivate {
249243
BuildRoot = GetEnv("ARCADIA_BUILD_ROOT");
250244
}
251245

252-
if (!ArcadiaTestsDataDir) {
253-
ArcadiaTestsDataDir = GetEnv("ARCADIA_TESTS_DATA_DIR");
254-
}
255-
256246
if (!WorkPath) {
257247
WorkPath = GetEnv("TEST_WORK_PATH");
258248
}

library/cpp/testing/common/env.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ namespace NPrivate {
6969
void AddTestParam(TStringBuf name, TStringBuf value);
7070

7171
bool IsRunningFromTest;
72-
TString ArcadiaTestsDataDir;
7372
TString SourceRoot;
7473
TString BuildRoot;
7574
TString WorkPath;

0 commit comments

Comments
 (0)