ENH: Pass in memcheck command options and suppresions, and change skin to tool
This commit is contained in:
parent
9755dd4f22
commit
d6f77bddc4
|
@ -71,6 +71,13 @@ bool cmCTestMemCheckCommand::InitialPass(
|
|||
m_CTest->SetCTestConfiguration("BuildDirectory", build_dir);
|
||||
}
|
||||
|
||||
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");
|
||||
|
||||
cmCTestGenericHandler* handler = m_CTest->GetHandler("memcheck");
|
||||
if ( !handler )
|
||||
{
|
||||
|
|
|
@ -324,7 +324,7 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking()
|
|||
m_MemoryTesterStyle = cmCTestMemCheckHandler::VALGRIND;
|
||||
if ( !m_MemoryTesterOptions.size() )
|
||||
{
|
||||
m_MemoryTesterOptions = "-q --skin=memcheck --leak-check=yes --show-reachable=yes --workaround-gcc296-bugs=yes --num-callers=100";
|
||||
m_MemoryTesterOptions = "-q --tool=memcheck --leak-check=yes --show-reachable=yes --workaround-gcc296-bugs=yes --num-callers=100";
|
||||
}
|
||||
if ( m_CTest->GetCTestConfiguration("MemoryCheckSuppressionFile").size() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue