CMake/Source/CTest/cmCTestRunScriptCommand.cxx

40 lines
1.1 KiB
C++
Raw Normal View History

2005-01-27 18:11:04 +03:00
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
2006-03-09 19:17:10 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
2005-01-27 18:11:04 +03:00
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "cmCTestRunScriptCommand.h"
#include "cmCTestScriptHandler.h"
2006-03-09 19:17:10 +03:00
bool cmCTestRunScriptCommand::InitialPass(
std::vector<std::string> const& args)
2005-01-27 18:11:04 +03:00
{
if(args.size() < 1 )
{
m_CTestScriptHandler->RunCurrentScript();
2005-01-27 18:11:04 +03:00
return true;
}
// run each script
unsigned int i;
for (i = 0; i < args.size(); ++i)
{
cmCTestScriptHandler::RunScript(m_CTest, args[i].c_str());
}
return true;
}