2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-02-17 18:51:52 +03:00
|
|
|
#include "cmCTestStartCommand.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
2005-05-02 22:15:29 +04:00
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
2009-11-24 16:58:59 +03:00
|
|
|
#include "cmCTestVC.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2005-02-17 18:51:52 +03:00
|
|
|
|
2009-12-29 22:38:31 +03:00
|
|
|
cmCTestStartCommand::cmCTestStartCommand()
|
|
|
|
{
|
|
|
|
this->CreateNewTag = true;
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmCTestStartCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
|
|
|
if (args.size() < 1)
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
size_t cnt = 0;
|
|
|
|
const char* smodel = args[cnt].c_str();
|
2005-02-17 18:51:52 +03:00
|
|
|
const char* src_dir = 0;
|
|
|
|
const char* bld_dir = 0;
|
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
cnt++;
|
|
|
|
|
|
|
|
this->CTest->SetSpecificTrack(0);
|
|
|
|
if ( cnt < args.size() -1 )
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
2006-04-28 19:59:31 +04:00
|
|
|
if ( args[cnt] == "TRACK" )
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
2006-04-28 19:59:31 +04:00
|
|
|
cnt ++;
|
|
|
|
this->CTest->SetSpecificTrack(args[cnt].c_str());
|
|
|
|
cnt ++;
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
}
|
2006-04-28 19:59:31 +04:00
|
|
|
|
2009-12-29 22:38:31 +03:00
|
|
|
if (cnt < args.size())
|
|
|
|
{
|
|
|
|
if (args[cnt] == "APPEND")
|
|
|
|
{
|
|
|
|
cnt ++;
|
|
|
|
this->CreateNewTag = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-28 19:59:31 +04:00
|
|
|
if ( cnt < args.size() )
|
2005-02-17 18:51:52 +03:00
|
|
|
{
|
2006-04-28 19:59:31 +04:00
|
|
|
src_dir = args[cnt].c_str();
|
|
|
|
cnt ++;
|
|
|
|
if ( cnt < args.size() )
|
|
|
|
{
|
|
|
|
bld_dir = args[cnt].c_str();
|
|
|
|
}
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
if ( !src_dir )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
src_dir = this->Makefile->GetDefinition("CTEST_SOURCE_DIRECTORY");
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
if ( !bld_dir)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
bld_dir = this->Makefile->GetDefinition("CTEST_BINARY_DIRECTORY");
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
if ( !src_dir )
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->SetError("source directory not specified. Specify source directory "
|
|
|
|
"as an argument or set CTEST_SOURCE_DIRECTORY");
|
2005-02-17 18:51:52 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( !bld_dir)
|
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
this->SetError("binary directory not specified. Specify binary directory "
|
|
|
|
"as an argument or set CTEST_BINARY_DIRECTORY");
|
2005-02-17 18:51:52 +03:00
|
|
|
return false;
|
|
|
|
}
|
2006-08-14 18:51:08 +04:00
|
|
|
|
|
|
|
cmSystemTools::AddKeepPath(src_dir);
|
|
|
|
cmSystemTools::AddKeepPath(bld_dir);
|
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->EmptyCTestConfiguration();
|
2009-11-24 16:58:59 +03:00
|
|
|
|
|
|
|
std::string sourceDir = cmSystemTools::CollapseFullPath(src_dir);
|
|
|
|
std::string binaryDir = cmSystemTools::CollapseFullPath(bld_dir);
|
|
|
|
this->CTest->SetCTestConfiguration("SourceDirectory", sourceDir.c_str());
|
|
|
|
this->CTest->SetCTestConfiguration("BuildDirectory", binaryDir.c_str());
|
2005-05-02 22:15:29 +04:00
|
|
|
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT, "Run dashboard with model "
|
|
|
|
<< smodel << std::endl
|
2005-06-23 21:04:18 +04:00
|
|
|
<< " Source directory: " << src_dir << std::endl
|
|
|
|
<< " Build directory: " << bld_dir << std::endl);
|
2006-04-28 19:59:31 +04:00
|
|
|
const char* track = this->CTest->GetSpecificTrack();
|
|
|
|
if ( track )
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, HANDLER_OUTPUT,
|
|
|
|
" Track: " << track << std::endl);
|
|
|
|
}
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2009-11-24 16:58:59 +03:00
|
|
|
// Log startup actions.
|
|
|
|
std::string startLogFile = binaryDir + "/Testing/Temporary/LastStart.log";
|
|
|
|
cmGeneratedFileStream ofs(startLogFile.c_str());
|
|
|
|
if(!ofs)
|
|
|
|
{
|
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
|
|
|
"Cannot create log file: LastStart.log" << std::endl);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the source directory exists.
|
|
|
|
if(!this->InitialCheckout(ofs, sourceDir))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(!cmSystemTools::FileIsDirectory(sourceDir.c_str()))
|
|
|
|
{
|
|
|
|
cmOStringStream e;
|
|
|
|
e << "given source path\n"
|
|
|
|
<< " " << sourceDir << "\n"
|
|
|
|
<< "which is not an existing directory. "
|
|
|
|
<< "Set CTEST_CHECKOUT_COMMAND to a command line to create it.";
|
|
|
|
this->SetError(e.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition("CTEST_RUN_CURRENT_SCRIPT", "OFF");
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->SetSuppressUpdatingCTestConfiguration(true);
|
|
|
|
int model = this->CTest->GetTestModelFromString(smodel);
|
|
|
|
this->CTest->SetTestModel(model);
|
|
|
|
this->CTest->SetProduceXML(true);
|
2005-06-16 21:18:21 +04:00
|
|
|
|
2009-11-24 16:58:59 +03:00
|
|
|
return this->CTest->InitializeFromCommand(this);
|
2005-02-17 18:51:52 +03:00
|
|
|
}
|
|
|
|
|
2009-11-24 16:58:59 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmCTestStartCommand::InitialCheckout(
|
|
|
|
std::ostream& ofs, std::string const& sourceDir)
|
|
|
|
{
|
|
|
|
// Use the user-provided command to create the source tree.
|
|
|
|
const char* initialCheckoutCommand
|
|
|
|
= this->Makefile->GetDefinition("CTEST_CHECKOUT_COMMAND");
|
|
|
|
if(!initialCheckoutCommand)
|
|
|
|
{
|
|
|
|
initialCheckoutCommand =
|
|
|
|
this->Makefile->GetDefinition("CTEST_CVS_CHECKOUT");
|
|
|
|
}
|
|
|
|
if(initialCheckoutCommand)
|
|
|
|
{
|
|
|
|
// Use a generic VC object to run and log the command.
|
|
|
|
cmCTestVC vc(this->CTest, ofs);
|
|
|
|
vc.SetSourceDirectory(sourceDir.c_str());
|
|
|
|
if(!vc.InitialCheckout(initialCheckoutCommand))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|