| 126 | } |
| 127 | |
| 128 | int cmCTestMemCheckHandler::PreProcessHandler() |
| 129 | { |
| 130 | if (!this->InitializeMemoryChecking()) { |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | if (!this->ExecuteCommands(this->CustomPreMemCheck)) { |
| 135 | cmCTestLog(this->CTest, ERROR_MESSAGE, |
| 136 | "Problem executing pre-memcheck command(s)." << std::endl); |
| 137 | return 0; |
| 138 | } |
| 139 | return 1; |
| 140 | } |
| 141 | |
| 142 | int cmCTestMemCheckHandler::PostProcessHandler() |
| 143 | { |
nothing calls this directly
no test coverage detected