| 96 | } |
| 97 | |
| 98 | bool cmCTestVC::RunUpdateCommand(std::vector<std::string> const& cmd, |
| 99 | OutputParser* out, OutputParser* err, |
| 100 | Encoding encoding) |
| 101 | { |
| 102 | // Report the command line. |
| 103 | this->UpdateCommandLine = this->ComputeCommandLine(cmd); |
| 104 | if (this->CTest->GetShowOnly()) { |
| 105 | this->Log << this->UpdateCommandLine << "\n"; |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | // Run the command. |
| 110 | return this->RunChild(cmd, out, err, "", encoding); |
| 111 | } |
| 112 | |
| 113 | std::string cmCTestVC::GetNightlyTime() |
| 114 | { |
no test coverage detected