2001-06-06 04:32:33 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-06-06 04:32:33 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04: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 04:32:33 +04:00
|
|
|
|
2002-01-21 23:30:43 +03: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 04:32:33 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmAddTestCommand.h"
|
|
|
|
|
|
|
|
// cmExecutableCommand
|
2001-09-20 23:08:30 +04:00
|
|
|
bool cmAddTestCommand::InitialPass(std::vector<std::string> const& args)
|
2001-06-06 04:32:33 +04: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
|
|
|
|
if(args.size() < 2 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2001-06-06 21:58:18 +04:00
|
|
|
|
2001-06-07 00:14:11 +04:00
|
|
|
// store the arguments for the final pass
|
2002-02-26 19:46:01 +03:00
|
|
|
// also expand any CMake variables
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
m_Args = args;
|
2001-06-06 21:58:18 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we append to the file in the final pass because Enable Testing command
|
|
|
|
// creates the file in the final pass.
|
|
|
|
void cmAddTestCommand::FinalPass()
|
|
|
|
{
|
|
|
|
// Create a full path filename for output Testfile
|
|
|
|
std::string fname;
|
|
|
|
fname = m_Makefile->GetStartOutputDirectory();
|
|
|
|
fname += "/";
|
2005-04-01 23:57:55 +04:00
|
|
|
if ( m_Makefile->IsOn("DART_ROOT") )
|
|
|
|
{
|
|
|
|
fname += "DartTestfile.txt";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fname += "CTestTestfile.cmake";
|
|
|
|
}
|
2001-06-06 04:32:33 +04:00
|
|
|
|
2001-08-24 02:30:05 +04:00
|
|
|
|
|
|
|
// If the file doesn't exist, then ENABLE_TESTING hasn't been run
|
|
|
|
if (cmSystemTools::FileExists(fname.c_str()))
|
2001-06-06 21:58:18 +04:00
|
|
|
{
|
2001-08-24 02:30:05 +04:00
|
|
|
// Open the output Testfile
|
|
|
|
std::ofstream fout(fname.c_str(), std::ios::app);
|
|
|
|
if (!fout)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error Writing ", fname.c_str());
|
|
|
|
return;
|
|
|
|
}
|
2001-06-06 21:58:18 +04:00
|
|
|
|
2001-08-24 02:30:05 +04:00
|
|
|
std::vector<std::string>::iterator it;
|
2001-06-06 21:58:18 +04:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// for each arg in the test
|
2001-08-24 02:30:05 +04:00
|
|
|
fout << "ADD_TEST(";
|
|
|
|
it = m_Args.begin();
|
|
|
|
fout << (*it).c_str();
|
|
|
|
++it;
|
|
|
|
for (; it != m_Args.end(); ++it)
|
|
|
|
{
|
2003-11-03 23:19:27 +03:00
|
|
|
// Just double-quote all arguments so they are re-parsed
|
|
|
|
// correctly by the test system.
|
|
|
|
fout << " \"";
|
|
|
|
for(std::string::iterator c = it->begin(); c != it->end(); ++c)
|
|
|
|
{
|
2003-11-04 16:50:43 +03:00
|
|
|
// Escape quotes within arguments. We should escape
|
|
|
|
// backslashes too but we cannot because it makes the result
|
|
|
|
// inconsistent with previous behavior of this command.
|
|
|
|
if((*c == '"'))
|
2003-10-30 22:27:29 +03:00
|
|
|
{
|
2003-11-03 23:19:27 +03:00
|
|
|
fout << '\\';
|
2003-10-30 22:27:29 +03:00
|
|
|
}
|
2003-11-03 23:19:27 +03:00
|
|
|
fout << *c;
|
|
|
|
}
|
|
|
|
fout << "\"";
|
2001-08-24 02:30:05 +04:00
|
|
|
}
|
|
|
|
fout << ")" << std::endl;
|
|
|
|
fout.close();
|
2003-11-03 23:19:27 +03:00
|
|
|
}
|
2001-06-06 21:58:18 +04:00
|
|
|
return;
|
2001-06-06 04:32:33 +04:00
|
|
|
}
|
|
|
|
|