aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/unittest/junit.cpp
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-03-17 11:33:07 +0300
committeralexv-smirnov <alex@ydb.tech>2023-03-17 11:33:07 +0300
commit4f4d932dd1fea2a03e04f3838ecd406224dde81b (patch)
treede0f78b4e86e8813b07ad8dbb2642e23be2ee87f /library/cpp/testing/unittest/junit.cpp
parent8475dd9deb086f897d0899215377ee7667f7893e (diff)
downloadydb-4f4d932dd1fea2a03e04f3838ecd406224dde81b.tar.gz
fix writing to junitxml set by an env var from a forked test
Diffstat (limited to 'library/cpp/testing/unittest/junit.cpp')
-rw-r--r--library/cpp/testing/unittest/junit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/testing/unittest/junit.cpp b/library/cpp/testing/unittest/junit.cpp
index f5fe84a937..984f1ec5ea 100644
--- a/library/cpp/testing/unittest/junit.cpp
+++ b/library/cpp/testing/unittest/junit.cpp
@@ -50,7 +50,7 @@ void TJUnitProcessor::Save() {
}
}
if (!lockFile.IsOpen()) {
- Cerr << "Could not find a vacant file name to write report, maximum number of reports: " << MaxReps << Endl;
+ Cerr << "Could not find a vacant file name to write report for path " << path << ", maximum number of reports: " << MaxReps << Endl;
Y_FAIL("Cannot write report");
}
path = reportFileName;