diff options
author | Alexander Neundorf <neundorf@kde.org> | 2009-07-11 20:27:28 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2009-07-11 20:27:28 (GMT) |
commit | a605bd5225ce062670f50b3a6a8e0b84be002bb1 (patch) | |
tree | 1663d37836632e5ec57589bcacdf5e012cdbea52 /Source/CTest/cmCTestScriptHandler.cxx | |
parent | f888a0efafafeb20753fa250deb2675bb627c595 (diff) | |
download | CMake-a605bd5225ce062670f50b3a6a8e0b84be002bb1.zip CMake-a605bd5225ce062670f50b3a6a8e0b84be002bb1.tar.gz CMake-a605bd5225ce062670f50b3a6a8e0b84be002bb1.tar.bz2 |
STYLE: rename InitCache to InitialCache, since it contains the contents for
the initial cache and is not e.g. a flag which shows whether the cache
should be initialized
Alex
Diffstat (limited to 'Source/CTest/cmCTestScriptHandler.cxx')
-rw-r--r-- | Source/CTest/cmCTestScriptHandler.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestScriptHandler.cxx b/Source/CTest/cmCTestScriptHandler.cxx index 38a406a..6476d54 100644 --- a/Source/CTest/cmCTestScriptHandler.cxx +++ b/Source/CTest/cmCTestScriptHandler.cxx @@ -117,7 +117,7 @@ void cmCTestScriptHandler::Initialize() this->CTestCmd = ""; this->UpdateCmd = ""; this->CTestEnv = ""; - this->InitCache = ""; + this->InitialCache = ""; this->CMakeCmd = ""; this->CMOutFile = ""; this->ExtraUpdates.clear(); @@ -488,7 +488,7 @@ int cmCTestScriptHandler::ExtractVariables() } this->CTestEnv = this->Makefile->GetSafeDefinition("CTEST_ENVIRONMENT"); - this->InitCache + this->InitialCache = this->Makefile->GetSafeDefinition("CTEST_INITIAL_CACHE"); this->CMakeCmd = this->Makefile->GetSafeDefinition("CTEST_CMAKE_COMMAND"); @@ -879,7 +879,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard() } // put the initial cache into the bin dir - if (!this->InitCache.empty()) + if (!this->InitialCache.empty()) { std::string cacheFile = this->BinaryDir; cacheFile += "/CMakeCache.txt"; @@ -890,7 +890,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard() return 9; } - fout.write(this->InitCache.c_str(), this->InitCache.size()); + fout.write(this->InitialCache.c_str(), this->InitialCache.size()); // Make sure the operating system has finished writing the file // before closing it. This will ensure the file is finished before |