| 305 | } |
| 306 | |
| 307 | void TJUnitProcessor::MakeTmpFileNameForForkedTests() { |
| 308 | if (GetForkTests() && !GetIsForked()) { |
| 309 | TmpReportFile.ConstructInPlace(MakeTempName()); |
| 310 | // Replace option for child processes |
| 311 | SetEnv(Y_UNITTEST_OUTPUT_CMDLINE_OPTION, TStringBuilder() << "json:" << TmpReportFile->Name()); |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | static TJUnitProcessor* CurrentJUnitProcessor = nullptr; |
| 316 |
nothing calls this directly
no test coverage detected