|
Notes |
|
|
(0029032)
|
|
David Cole
|
|
2012-08-20 14:48
|
|
|
Both variables are set by ctest, and always will be for backwards compatibility. |
|
|
|
(0029033)
|
|
Brad King
|
2012-08-20 16:37
(edited on: 2012-08-20 16:38) |
|
Try this patch:
diff --git a/Utilities/KWSys/vtksys/SystemTools.cxx b/Utilities/KWSys/vtksys/SystemTools.cxx
index 66850e9..4fd2c04 100644
--- a/Utilities/KWSys/vtksys/SystemTools.cxx
+++ b/Utilities/KWSys/vtksys/SystemTools.cxx
@@ -4841,7 +4841,8 @@ static int SystemToolsDebugReport(int, char* message, int*)
void SystemTools::EnableMSVCDebugHook()
{
- if (getenv("DART_TEST_FROM_DART"))
+ if (getenv("DART_TEST_FROM_DART") ||
+ getenv("DASHBOARD_TEST_FROM_CTEST"))
{
_CrtSetReportHook(SystemToolsDebugReport);
}
|
|
|
|
(0031245)
|
|
Dave DeMarle
|
|
2013-07-22 20:02
|
|
|
moving all "tabled" bugs into "backlog" category since "tabled" is no longer used. |
|
|
|
(0031332)
|
|
Brad King
|
|
2013-07-25 09:00
|
|
|
|
|
(0031360)
|
|
Brad King
|
|
2013-07-29 11:39
|
|
|