| 297 | } |
| 298 | |
| 299 | bool cmCTestHG::LoadModifications() |
| 300 | { |
| 301 | // Use 'hg status' to get modified files. |
| 302 | std::string hg = this->CommandLineTool; |
| 303 | std::vector<std::string> hg_status = { hg, "status" }; |
| 304 | StatusParser out(this, "status-out> "); |
| 305 | OutputLogger err(this->Log, "status-err> "); |
| 306 | this->RunChild(hg_status, &out, &err); |
| 307 | return true; |
| 308 | } |
no test coverage detected