| 1041 | } |
| 1042 | |
| 1043 | void cmCTestMultiProcessHandler::WriteCheckpoint(int index) |
| 1044 | { |
| 1045 | std::string fname = |
| 1046 | this->CTest->GetBinaryDir() + "/Testing/Temporary/CTestCheckpoint.txt"; |
| 1047 | cmsys::ofstream fout; |
| 1048 | fout.open(fname.c_str(), std::ios::app); |
| 1049 | fout << index << "\n"; |
| 1050 | fout.close(); |
| 1051 | } |
| 1052 | |
| 1053 | void cmCTestMultiProcessHandler::MarkFinished() |
| 1054 | { |
no test coverage detected