CMake/Source/CTest/cmCTestRunScriptCommand.cxx

46 lines
1.2 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"
bool cmCTestRunScriptCommand
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
2005-01-27 18:11:04 +03:00
{
if(args.size() < 1 )
{
2006-03-10 23:03:09 +03:00
this->CTestScriptHandler->RunCurrentScript();
2005-01-27 18:11:04 +03:00
return true;
}
bool np = false;
unsigned int i = 0;
if (args[i] == "NEW_PROCESS")
{
np = true;
i++;
}
2005-01-27 18:11:04 +03:00
// run each script
for (; i < args.size(); ++i)
2005-01-27 18:11:04 +03:00
{
cmCTestScriptHandler::RunScript(this->CTest, args[i].c_str(), !np);
2005-01-27 18:11:04 +03:00
}
return true;
}