summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestBuildAndTestHandler.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-28 13:23:40 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-28 13:23:40 (GMT)
commit36d7f3990aa1341ffa7782bea6e3b3233a3581ff (patch)
treed5d304ae64852ed6790eedf05f38cceede60d93c /Source/CTest/cmCTestBuildAndTestHandler.cxx
parent456c823ec010ce379cdc85ace65fe1ddbeea3236 (diff)
downloadCMake-36d7f3990aa1341ffa7782bea6e3b3233a3581ff.zip
CMake-36d7f3990aa1341ffa7782bea6e3b3233a3581ff.tar.gz
CMake-36d7f3990aa1341ffa7782bea6e3b3233a3581ff.tar.bz2
ENH: Add support for multiple build targets and start adding simple cpack tests
Diffstat (limited to 'Source/CTest/cmCTestBuildAndTestHandler.cxx')
-rw-r--r--Source/CTest/cmCTestBuildAndTestHandler.cxx49
1 files changed, 34 insertions, 15 deletions
diff --git a/Source/CTest/cmCTestBuildAndTestHandler.cxx b/Source/CTest/cmCTestBuildAndTestHandler.cxx
index a32d2e6..68c2350 100644
--- a/Source/CTest/cmCTestBuildAndTestHandler.cxx
+++ b/Source/CTest/cmCTestBuildAndTestHandler.cxx
@@ -34,6 +34,9 @@ cmCTestBuildAndTestHandler::cmCTestBuildAndTestHandler()
//----------------------------------------------------------------------
void cmCTestBuildAndTestHandler::Initialize()
{
+#undef cout
+ std::cout << "Erase the list" << std::endl; std::cout.flush();
+ m_BuildTargets.erase(m_BuildTargets.begin(), m_BuildTargets.end());
this->Superclass::Initialize();
}
@@ -179,25 +182,41 @@ int cmCTestBuildAndTestHandler::RunCMakeAndTest(std::string* outstring)
}
// do the build
- std::string output;
- retVal = cm.GetGlobalGenerator()->Build(
- m_SourceDir.c_str(), m_BinaryDir.c_str(),
- m_BuildProject.c_str(), m_BuildTarget.c_str(),
- &output, m_BuildMakeProgram.c_str(),
- m_CTest->GetConfigType().c_str(),!m_BuildNoClean);
-
- out << output;
+ std::vector<std::string>::iterator tarIt;
+#undef cout
+ if ( m_BuildTargets.size() == 0 )
+ {
+ m_BuildTargets.push_back("");
+ }
+ std::cout << "Execute targets: " << std::endl;
+ for ( tarIt = m_BuildTargets.begin(); tarIt != m_BuildTargets.end();
+ ++ tarIt )
+ {
+ std::cout << "Execute targets: " << tarIt->c_str() << std::endl;
+ std::cout.flush();
+ std::string output;
+ retVal = cm.GetGlobalGenerator()->Build(
+ m_SourceDir.c_str(), m_BinaryDir.c_str(),
+ m_BuildProject.c_str(), tarIt->c_str(),
+ &output, m_BuildMakeProgram.c_str(),
+ m_CTest->GetConfigType().c_str(),!m_BuildNoClean);
+
+ out << output;
+ // if the build failed then return
+ if (retVal)
+ {
+ if(outstring)
+ {
+ *outstring = out.str();
+ }
+ return 1;
+ }
+ }
if(outstring)
{
*outstring = out.str();
}
- // if the build failed then return
- if (retVal)
- {
- return 1;
- }
-
// if not test was specified then we are done
if (!m_TestCommand.size())
{
@@ -390,7 +409,7 @@ int cmCTestBuildAndTestHandler::ProcessCommandLineArguments(
if(currentArg.find("--build-target",0) == 0 && idx < allArgs.size() - 1)
{
idx++;
- m_BuildTarget = allArgs[idx];
+ m_BuildTargets.push_back(allArgs[idx]);
}
if(currentArg.find("--build-nocmake",0) == 0)
{