2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
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
|
|
|
}
|