MCPcopy Create free account
hub / github.com/Kitware/CMake / PostProcessTest

Method PostProcessTest

Source/CTest/cmCTestMemCheckHandler.cxx:1251–1268  ·  view source on GitHub ↗

PostProcessTest memcheck results

Source from the content-addressed store, hash-verified

1249
1250// PostProcessTest memcheck results
1251void 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

Callers 1

MemCheckPostProcessMethod · 0.80

Calls 4

TestOutputFileNamesMethod · 0.95
AppendMemTesterOutputMethod · 0.95

Tested by

no test coverage detected