summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestScriptHandler.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-10-19 14:45:19 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-10-19 14:45:19 (GMT)
commitf7a5289e318e3802737a2629c7fe2ed24dbfc5b9 (patch)
tree200ff8466c8dd3da1cec87f51689eaea6651b50e /Source/CTest/cmCTestScriptHandler.cxx
parent2fd1b374c17f4da904a0f3e62802a352f8ab6c72 (diff)
downloadCMake-f7a5289e318e3802737a2629c7fe2ed24dbfc5b9.zip
CMake-f7a5289e318e3802737a2629c7fe2ed24dbfc5b9.tar.gz
CMake-f7a5289e318e3802737a2629c7fe2ed24dbfc5b9.tar.bz2
ENH: added total time limit for a CTest run bug 1207
Diffstat (limited to 'Source/CTest/cmCTestScriptHandler.cxx')
-rw-r--r--Source/CTest/cmCTestScriptHandler.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx
index 905a40b..0346e43 100644
--- a/Source/CTest/cmCTestScriptHandler.cxx
+++ b/Source/CTest/cmCTestScriptHandler.cxx
@@ -965,3 +965,24 @@ bool cmCTestScriptHandler::EmptyBinaryDirectory(const char *sname)
}
return true;
}
+
+//-------------------------------------------------------------------------
+double cmCTestScriptHandler::GetRemainingTimeAllowed()
+{
+ if (!this->Makefile)
+ {
+ return 1.0e7;
+ }
+
+ const char *timelimitS
+ = this->Makefile->GetDefinition("CTEST_TIME_LIMIT");
+
+ if (!timelimitS)
+ {
+ return 1.0e7;
+ }
+
+ double timelimit = atof(timelimitS);
+
+ return timelimit - cmSystemTools::GetTime() + this->ScriptStartTime;
+}