2009-10-02 01:21: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-10-02 01:21: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-10-02 01:21: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
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2005-06-15 18:53:49 +04:00
|
|
|
"MemoryCheckCommand", "CTEST_MEMORYCHECK_COMMAND");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2005-06-15 18:53:49 +04:00
|
|
|
"MemoryCheckCommandOptions", "CTEST_MEMORYCHECK_COMMAND_OPTIONS");
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
|
2005-06-15 18:53:49 +04:00
|
|
|
"MemoryCheckSuppressionFile", "CTEST_MEMORYCHECK_SUPPRESSIONS_FILE");
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
return handler;
|
2005-06-14 22:00:45 +04:00
|
|
|
}
|
|
|
|
|