| 275 | } |
| 276 | |
| 277 | void cmCTestMemCheckHandler::PopulateCustomVectors(cmMakefile* mf) |
| 278 | { |
| 279 | this->cmCTestTestHandler::PopulateCustomVectors(mf); |
| 280 | this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_PRE_MEMCHECK", |
| 281 | this->CustomPreMemCheck); |
| 282 | this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_POST_MEMCHECK", |
| 283 | this->CustomPostMemCheck); |
| 284 | |
| 285 | this->CTest->PopulateCustomVector(mf, "CTEST_CUSTOM_MEMCHECK_IGNORE", |
| 286 | this->CustomTestsIgnore); |
| 287 | } |
| 288 | |
| 289 | int cmCTestMemCheckHandler::GetDefectCount() const |
| 290 | { |
nothing calls this directly
no test coverage detected