2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-06-14 14:00:45 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-06-14 14:00:45 -04:00
|
|
|
|
2009-09-28 11: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 14:00:45 -04:00
|
|
|
#include "cmCTestMemCheckCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
|
|
|
|
2005-06-23 13:04:18 -04:00
|
|
|
cmCTestGenericHandler* cmCTestMemCheckCommand::InitializeActualHandler()
|
|
|
|
{
|
2006-03-10 15:03:09 -05:00
|
|
|
cmCTestGenericHandler* handler
|
|
|
|
= this->CTest->GetInitializedHandler("memcheck");
|
2005-06-14 14:00:45 -04:00
|
|
|
|
2014-07-07 15:58:02 -04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-17 17:15:00 -05:00
|
|
|
"MemoryCheckType", "CTEST_MEMORYCHECK_TYPE", this->Quiet);
|
2014-10-03 13:45:07 -04:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-17 17:15:00 -05:00
|
|
|
"MemoryCheckSanitizerOptions", "CTEST_MEMORYCHECK_SANITIZER_OPTIONS",
|
|
|
|
this->Quiet);
|
2006-03-15 11:02:08 -05:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-17 17:15:00 -05:00
|
|
|
"MemoryCheckCommand", "CTEST_MEMORYCHECK_COMMAND", this->Quiet);
|
2006-03-15 11:02:08 -05:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-17 17:15:00 -05:00
|
|
|
"MemoryCheckCommandOptions", "CTEST_MEMORYCHECK_COMMAND_OPTIONS",
|
|
|
|
this->Quiet);
|
2006-03-15 11:02:08 -05:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2015-02-17 17:15:00 -05:00
|
|
|
"MemoryCheckSuppressionFile", "CTEST_MEMORYCHECK_SUPPRESSIONS_FILE",
|
|
|
|
this->Quiet);
|
2005-06-15 10:53:49 -04:00
|
|
|
|
2015-02-17 17:15:00 -05:00
|
|
|
handler->SetQuiet(this->Quiet);
|
2005-06-23 13:04:18 -04:00
|
|
|
return handler;
|
2005-06-14 14:00:45 -04:00
|
|
|
}
|
|
|
|
|