2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-01-27 18:11:04 +03:00
|
|
|
#include "cmCTestRunScriptCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTestScriptHandler.h"
|
2016-08-24 23:01:40 +03:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
class cmExecutionStatus;
|
2005-01-27 18:11:04 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmCTestRunScriptCommand::InitialPass(std::vector<std::string> const& args,
|
2016-08-17 02:49:57 +03:00
|
|
|
cmExecutionStatus& /*unused*/)
|
2005-01-27 18:11:04 +03:00
|
|
|
{
|
2016-05-27 00:05:30 +03:00
|
|
|
if (args.empty()) {
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTestScriptHandler->RunCurrentScript();
|
2005-01-27 18:11:04 +03:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-27 18:11:04 +03:00
|
|
|
|
2006-04-04 21:04:28 +04:00
|
|
|
bool np = false;
|
|
|
|
unsigned int i = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args[i] == "NEW_PROCESS") {
|
2006-04-04 21:04:28 +04:00
|
|
|
np = true;
|
|
|
|
i++;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-09-04 21:24:25 +04:00
|
|
|
int start = i;
|
2005-01-27 18:11:04 +03:00
|
|
|
// run each script
|
2009-09-04 21:24:25 +04:00
|
|
|
std::string returnVariable;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = start; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "RETURN_VALUE") {
|
2009-09-04 21:24:25 +04:00
|
|
|
++i;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (i < args.size()) {
|
2009-09-04 21:24:25 +04:00
|
|
|
returnVariable = args[i];
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
for (i = start; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "RETURN_VALUE") {
|
2009-09-04 21:24:25 +04:00
|
|
|
++i;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2009-09-04 21:24:25 +04:00
|
|
|
int ret;
|
2016-05-16 17:34:04 +03:00
|
|
|
cmCTestScriptHandler::RunScript(this->CTest, args[i].c_str(), !np, &ret);
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream str;
|
2009-09-04 21:24:25 +04:00
|
|
|
str << ret;
|
2014-03-11 03:04:11 +04:00
|
|
|
this->Makefile->AddDefinition(returnVariable, str.str().c_str());
|
2005-01-27 18:11:04 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-27 18:11:04 +03:00
|
|
|
return true;
|
|
|
|
}
|