2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-06-14 22:00:45 +04:00
|
|
|
#include "cmCTestMemCheckCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* cmCTestMemCheckCommand::InitializeActualHandler()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestGenericHandler* handler =
|
|
|
|
this->CTest->GetInitializedHandler("memcheck");
|
|
|
|
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "MemoryCheckType", "CTEST_MEMORYCHECK_TYPE", this->Quiet);
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "MemoryCheckSanitizerOptions",
|
|
|
|
"CTEST_MEMORYCHECK_SANITIZER_OPTIONS", this->Quiet);
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "MemoryCheckCommand", "CTEST_MEMORYCHECK_COMMAND",
|
2015-02-18 01:15:00 +03:00
|
|
|
this->Quiet);
|
2016-05-16 17:34:04 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "MemoryCheckCommandOptions",
|
|
|
|
"CTEST_MEMORYCHECK_COMMAND_OPTIONS", this->Quiet);
|
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(
|
|
|
|
this->Makefile, "MemoryCheckSuppressionFile",
|
|
|
|
"CTEST_MEMORYCHECK_SUPPRESSIONS_FILE", this->Quiet);
|
2005-06-15 18:53:49 +04:00
|
|
|
|
2015-02-18 01:15:00 +03:00
|
|
|
handler->SetQuiet(this->Quiet);
|
2005-06-23 21:04:18 +04:00
|
|
|
return handler;
|
2005-06-14 22:00:45 +04:00
|
|
|
}
|