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()
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestGenericHandler* handler
|
|
|
|
= this->CTest->GetInitializedHandler("memcheck");
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2014-07-07 23:58:02 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-18 01:15:00 +03:00
|
|
|
"MemoryCheckType", "CTEST_MEMORYCHECK_TYPE", this->Quiet);
|
2014-10-03 21:45:07 +04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-18 01:15:00 +03:00
|
|
|
"MemoryCheckSanitizerOptions", "CTEST_MEMORYCHECK_SANITIZER_OPTIONS",
|
|
|
|
this->Quiet);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-18 01:15:00 +03:00
|
|
|
"MemoryCheckCommand", "CTEST_MEMORYCHECK_COMMAND", this->Quiet);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-18 01:15:00 +03:00
|
|
|
"MemoryCheckCommandOptions", "CTEST_MEMORYCHECK_COMMAND_OPTIONS",
|
|
|
|
this->Quiet);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-18 01:15:00 +03:00
|
|
|
"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
|
|
|
}
|
|
|
|
|