2001-06-06 00:32:33 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-06-06 00:32:33 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-06-06 00:32:33 +00:00
|
|
|
|
2002-01-21 20:30:43 +00:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-06-06 00:32:33 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddTestCommand.h"
|
|
|
|
|
2009-03-16 14:40:46 +00:00
|
|
|
#include "cmTestGenerator.h"
|
|
|
|
|
2005-04-24 19:59:51 +00:00
|
|
|
#include "cmTest.h"
|
|
|
|
|
|
|
|
|
2001-06-06 00:32:33 +00:00
|
|
|
// cmExecutableCommand
|
2008-01-23 15:28:26 +00:00
|
|
|
bool cmAddTestCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-06-06 00:32:33 +00:00
|
|
|
{
|
2006-05-10 17:50:44 +00:00
|
|
|
// First argument is the name of the test Second argument is the name of
|
|
|
|
// the executable to run (a target or external program) Remaining arguments
|
|
|
|
// are the arguments to pass to the executable
|
2001-06-06 00:32:33 +00:00
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-06-06 17:58:18 +00:00
|
|
|
|
2001-06-06 20:14:11 +00:00
|
|
|
// store the arguments for the final pass
|
2002-02-26 16:46:01 +00:00
|
|
|
// also expand any CMake variables
|
|
|
|
|
2005-04-24 19:59:51 +00:00
|
|
|
std::vector<cmStdString> arguments;
|
2005-04-24 20:19:54 +00:00
|
|
|
std::vector<std::string>::const_iterator it;
|
|
|
|
for ( it = args.begin() + 2; it != args.end(); ++ it )
|
|
|
|
{
|
|
|
|
arguments.push_back(*it);
|
|
|
|
}
|
2001-06-06 17:58:18 +00:00
|
|
|
|
2009-03-16 14:40:46 +00:00
|
|
|
// Create the test but add a generator only the first time it is
|
|
|
|
// seen. This preserves behavior from before test generators.
|
|
|
|
cmTest* test = this->Makefile->GetTest(args[0].c_str());
|
|
|
|
if(!test)
|
|
|
|
{
|
|
|
|
test = this->Makefile->CreateTest(args[0].c_str());
|
|
|
|
this->Makefile->AddTestGenerator(new cmTestGenerator(test));
|
|
|
|
}
|
2005-04-24 19:59:51 +00:00
|
|
|
test->SetCommand(args[1].c_str());
|
|
|
|
test->SetArguments(arguments);
|
2001-06-06 17:58:18 +00:00
|
|
|
|
2005-04-24 19:59:51 +00:00
|
|
|
return true;
|
2001-06-06 00:32:33 +00:00
|
|
|
}
|