From 9ff7fdc74fb159677ede7582c9f2cc44c386212a Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 7 May 2004 12:53:35 -0400 Subject: [PATCH] ENH: add the ability to block popup error dialogs in tests on windows --- Source/cmCTest.cxx | 26 ++++++++++++++++++++++++++ Source/cmCTest.h | 10 +++++----- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index f362185cca..2cb60ac187 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -359,6 +359,7 @@ cmCTest::cmCTest() m_ShowOnly = false; m_RunConfigurationScript = false; m_TestModel = cmCTest::EXPERIMENTAL; + m_InteractiveDebugMode = true; m_TimeOut = 0; m_CompatibilityMode = 0; int cc; @@ -370,6 +371,11 @@ cmCTest::cmCTest() int cmCTest::Initialize() { + if(!m_InteractiveDebugMode) + { + this->BlockTestErrorDiagnostics(); + } + m_ToplevelPath = cmSystemTools::GetCurrentWorkingDirectory(); cmSystemTools::ConvertToUnixSlashes(m_ToplevelPath); if ( !this->ReadCustomConfigurationFileTree(m_ToplevelPath.c_str()) ) @@ -512,6 +518,21 @@ void cmCTest::UpdateCTestConfiguration() } } +void cmCTest::BlockTestErrorDiagnostics() +{ + cmSystemTools::PutEnv("DART_TEST_FROM_DART=1"); + cmSystemTools::PutEnv("DASHBOARD_TEST_FROM_CTEST=1"); +#if defined(_WIN32) + SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX); +#endif +} + +void cmCTest::SetTestModel(int mode) +{ + m_InteractiveDebugMode = false; + m_TestModel = mode; +} + bool cmCTest::SetTest(const char* ttype) { if ( cmSystemTools::LowerCase(ttype) == "all" ) @@ -4148,6 +4169,11 @@ int cmCTest::Run(std::vectorconst& args, std::string* output) { m_TomorrowTag = true; } + if( arg.find("--interactive-debug-mode",0) == 0 && i < args.size() - 1 ) + { + i++; + m_InteractiveDebugMode = cmSystemTools::IsOn(args[i].c_str()); + } if( arg.find("--compatibility-mode",0) == 0 ) { m_CompatibilityMode = true; diff --git a/Source/cmCTest.h b/Source/cmCTest.h index e48ff5b254..78a89558fb 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -117,10 +117,7 @@ public: /** * Set the cmake test mode (experimental, nightly, continuous). */ - void SetTestModel(int mode) - { - m_TestModel = mode; - } + void SetTestModel(int mode); std::string GetTestModelString(); static int GetTestModelFromString(const char* str); @@ -356,7 +353,10 @@ private: tm_VectorOfStrings m_CustomPostTest; tm_VectorOfStrings m_CustomPreMemCheck; tm_VectorOfStrings m_CustomPostMemCheck; - + bool m_InteractiveDebugMode; + + void BlockTestErrorDiagnostics(); + int ExecuteCommands(tm_VectorOfStrings& vec); /**