|
|
@@ -607,9 +607,8 @@ int cmCTestScriptHandler::CheckOutSourceDir()
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
"Run cvs: " << this->CVSCheckOut << std::endl);
|
|
|
res = cmSystemTools::RunSingleCommand(
|
|
|
- this->CVSCheckOut.c_str(), &output, &output, &retVal,
|
|
|
- this->CTestRoot.c_str(), this->HandlerVerbose,
|
|
|
- cmDuration::zero() /*this->TimeOut*/);
|
|
|
+ this->CVSCheckOut, &output, &output, &retVal, this->CTestRoot.c_str(),
|
|
|
+ this->HandlerVerbose, cmDuration::zero() /*this->TimeOut*/);
|
|
|
if (!res || retVal != 0) {
|
|
|
cmSystemTools::Error("Unable to perform cvs checkout:\n",
|
|
|
output.c_str());
|
|
|
@@ -675,7 +674,7 @@ int cmCTestScriptHandler::PerformExtraUpdates()
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
"Run Update: " << fullCommand << std::endl);
|
|
|
res = cmSystemTools::RunSingleCommand(
|
|
|
- fullCommand.c_str(), &output, &output, &retVal, cvsArgs[0].c_str(),
|
|
|
+ fullCommand, &output, &output, &retVal, cvsArgs[0].c_str(),
|
|
|
this->HandlerVerbose, cmDuration::zero() /*this->TimeOut*/);
|
|
|
if (!res || retVal != 0) {
|
|
|
cmSystemTools::Error("Unable to perform extra updates:\n", eu.c_str(),
|
|
|
@@ -779,7 +778,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard()
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
"Run cmake command: " << command << std::endl);
|
|
|
res = cmSystemTools::RunSingleCommand(
|
|
|
- command.c_str(), &output, &output, &retVal, this->BinaryDir.c_str(),
|
|
|
+ command, &output, &output, &retVal, this->BinaryDir.c_str(),
|
|
|
this->HandlerVerbose, cmDuration::zero() /*this->TimeOut*/);
|
|
|
|
|
|
if (!this->CMOutFile.empty()) {
|
|
|
@@ -818,7 +817,7 @@ int cmCTestScriptHandler::RunConfigurationDashboard()
|
|
|
cmCTestLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
|
|
"Run ctest command: " << command << std::endl);
|
|
|
res = cmSystemTools::RunSingleCommand(
|
|
|
- command.c_str(), &output, &output, &retVal, this->BinaryDir.c_str(),
|
|
|
+ command, &output, &output, &retVal, this->BinaryDir.c_str(),
|
|
|
this->HandlerVerbose, cmDuration::zero() /*this->TimeOut*/);
|
|
|
|
|
|
// did something critical fail in ctest
|