2005-06-14 22:00:45 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCTestMemCheckCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmCTestGenericHandler.h"
|
|
|
|
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
cmCTestGenericHandler* cmCTestMemCheckCommand::InitializeActualHandler()
|
|
|
|
{
|
|
|
|
cmCTestGenericHandler* handler = m_CTest->GetInitializedHandler("memcheck");
|
2005-06-14 22:00:45 +04:00
|
|
|
|
2005-06-15 18:53:49 +04:00
|
|
|
m_CTest->SetCTestConfigurationFromCMakeVariable(m_Makefile,
|
|
|
|
"MemoryCheckCommand", "CTEST_MEMORYCHECK_COMMAND");
|
|
|
|
m_CTest->SetCTestConfigurationFromCMakeVariable(m_Makefile,
|
|
|
|
"MemoryCheckCommandOptions", "CTEST_MEMORYCHECK_COMMAND_OPTIONS");
|
|
|
|
m_CTest->SetCTestConfigurationFromCMakeVariable(m_Makefile,
|
|
|
|
"MemoryCheckSuppressionFile", "CTEST_MEMORYCHECK_SUPPRESSIONS_FILE");
|
|
|
|
|
2005-06-23 21:04:18 +04:00
|
|
|
return handler;
|
2005-06-14 22:00:45 +04:00
|
|
|
}
|
|
|
|
|