diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-01 16:21:16 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-10-01 16:21:16 (GMT) |
commit | 6e9ec4598d0505b179012ba5d6d77b1b161a334a (patch) | |
tree | bdd6a8f7fbf8b9269f8460fc9162332c110ba42a /Source/cmCTest.cxx | |
parent | 7350756728923cc245464703ac3d4a0cef9653bd (diff) | |
download | CMake-6e9ec4598d0505b179012ba5d6d77b1b161a334a.zip CMake-6e9ec4598d0505b179012ba5d6d77b1b161a334a.tar.gz CMake-6e9ec4598d0505b179012ba5d6d77b1b161a334a.tar.bz2 |
ENH: Add CTEST_EXECUTABLE_NAME to CTest scripting. This way you do not have to specify ctest executable in CTEST_COMMAND, but just a variable
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index aee85e0..45703e6 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1575,7 +1575,7 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output) // call process directory if (this->m_RunConfigurationScript) { - res = this->ScriptHandler->RunConfigurationScript(); + res = this->ScriptHandler->RunConfigurationScript(this); } else { |