PostProcessTest memcheck results
| 1249 | |
| 1250 | // PostProcessTest memcheck results |
| 1251 | void cmCTestMemCheckHandler::PostProcessTest(cmCTestTestResult& res, int test) |
| 1252 | { |
| 1253 | cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT, |
| 1254 | "PostProcessTest memcheck results for : " << res.Name |
| 1255 | << std::endl, |
| 1256 | this->Quiet); |
| 1257 | if (this->MemoryTesterStyle == cmCTestMemCheckHandler::BOUNDS_CHECKER) { |
| 1258 | this->PostProcessBoundsCheckerTest(res, test); |
| 1259 | } else if (this->MemoryTesterStyle == cmCTestMemCheckHandler::DRMEMORY) { |
| 1260 | this->PostProcessDrMemoryTest(res, test); |
| 1261 | } else { |
| 1262 | std::vector<std::string> files; |
| 1263 | this->TestOutputFileNames(test, files); |
| 1264 | for (std::string const& f : files) { |
| 1265 | this->AppendMemTesterOutput(res, f); |
| 1266 | } |
| 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | // This method puts the bounds checker output file into the output |
| 1271 | // for the test |
no test coverage detected