2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2009-09-21 22:21:41 +04: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.
|
2009-09-21 22:21:41 +04: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.
|
|
|
|
============================================================================*/
|
2009-09-21 22:21:41 +04:00
|
|
|
|
2009-09-10 19:18:05 +04:00
|
|
|
#include "cmCTestBatchTestHandler.h"
|
|
|
|
#include "cmProcess.h"
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
#include "cmCTest.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
cmCTestBatchTestHandler::~cmCTestBatchTestHandler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
void cmCTestBatchTestHandler::RunTests()
|
|
|
|
{
|
|
|
|
this->WriteBatchScript();
|
2009-10-26 16:44:08 +03:00
|
|
|
this->SubmitBatchScript();
|
2009-09-10 19:18:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
void cmCTestBatchTestHandler::WriteBatchScript()
|
|
|
|
{
|
|
|
|
this->Script = this->CTest->GetBinaryDir()
|
|
|
|
+ "/Testing/CTestBatch.txt";
|
|
|
|
std::fstream fout;
|
|
|
|
fout.open(this->Script.c_str(), std::ios::out);
|
2009-09-21 22:21:41 +04:00
|
|
|
fout << "#!/bin/sh\n";
|
2009-09-10 19:18:05 +04:00
|
|
|
|
|
|
|
for(TestMap::iterator i = this->Tests.begin(); i != this->Tests.end(); ++i)
|
|
|
|
{
|
|
|
|
this->WriteSrunArgs(i->first, fout);
|
|
|
|
this->WriteTestCommand(i->first, fout);
|
2009-09-14 19:23:20 +04:00
|
|
|
fout << "\n";
|
2009-09-10 19:18:05 +04:00
|
|
|
}
|
|
|
|
fout.flush();
|
|
|
|
fout.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
void cmCTestBatchTestHandler::WriteSrunArgs(int test, std::fstream& fout)
|
|
|
|
{
|
|
|
|
cmCTestTestHandler::cmCTestTestProperties* properties =
|
|
|
|
this->Properties[test];
|
|
|
|
|
2009-09-21 23:29:34 +04:00
|
|
|
fout << "srun ";
|
|
|
|
//fout << "--jobid=" << test << " ";
|
2009-09-21 22:58:30 +04:00
|
|
|
fout << "-J=" << properties->Name << " ";
|
2009-09-10 19:18:05 +04:00
|
|
|
|
|
|
|
//Write dependency information
|
2009-09-21 23:29:34 +04:00
|
|
|
/*if(this->Tests[test].size() > 0)
|
2009-09-10 19:18:05 +04:00
|
|
|
{
|
|
|
|
fout << "-P=afterany";
|
|
|
|
for(TestSet::iterator i = this->Tests[test].begin();
|
|
|
|
i != this->Tests[test].end(); ++i)
|
|
|
|
{
|
|
|
|
fout << ":" << *i;
|
|
|
|
}
|
|
|
|
fout << " ";
|
2009-09-21 23:29:34 +04:00
|
|
|
}*/
|
2009-09-10 19:18:05 +04:00
|
|
|
if(properties->RunSerial)
|
|
|
|
{
|
|
|
|
fout << "--exclusive ";
|
|
|
|
}
|
|
|
|
if(properties->Processors > 1)
|
|
|
|
{
|
|
|
|
fout << "-n" << properties->Processors << " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
void cmCTestBatchTestHandler::WriteTestCommand(int test, std::fstream& fout)
|
|
|
|
{
|
|
|
|
std::vector<std::string> args = this->Properties[test]->Args;
|
|
|
|
std::vector<std::string> processArgs;
|
|
|
|
std::string command;
|
|
|
|
|
|
|
|
command = this->TestHandler->FindTheExecutable(args[1].c_str());
|
|
|
|
command = cmSystemTools::ConvertToOutputPath(command.c_str());
|
|
|
|
|
|
|
|
//Prepends memcheck args to our command string if this is a memcheck
|
|
|
|
this->TestHandler->GenerateTestCommand(processArgs);
|
|
|
|
processArgs.push_back(command);
|
|
|
|
|
|
|
|
for(std::vector<std::string>::iterator arg = processArgs.begin();
|
|
|
|
arg != processArgs.end(); ++arg)
|
|
|
|
{
|
|
|
|
fout << *arg << " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string>::iterator i = args.begin();
|
|
|
|
++i; //the test name
|
|
|
|
++i; //the executable (command)
|
2009-09-21 23:29:34 +04:00
|
|
|
if(args.size() > 2)
|
|
|
|
{
|
|
|
|
fout << "'";
|
|
|
|
}
|
|
|
|
while(i != args.end())
|
2009-09-10 19:18:05 +04:00
|
|
|
{
|
2009-09-21 23:29:34 +04:00
|
|
|
fout << "\"" << *i << "\""; //args to the test executable
|
|
|
|
++i;
|
|
|
|
|
|
|
|
if(i == args.end() && args.size() > 2)
|
|
|
|
{
|
|
|
|
fout << "'";
|
|
|
|
}
|
|
|
|
fout << " ";
|
2009-09-10 19:18:05 +04:00
|
|
|
}
|
|
|
|
//TODO ZACH build TestResult.FullCommandLine
|
|
|
|
//this->TestResult.FullCommandLine = this->TestCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
void cmCTestBatchTestHandler::SubmitBatchScript()
|
|
|
|
{
|
|
|
|
cmProcess sbatch;
|
|
|
|
std::vector<std::string> args;
|
|
|
|
args.push_back(this->Script);
|
|
|
|
args.push_back("-o");
|
|
|
|
args.push_back(this->CTest->GetBinaryDir()
|
2009-10-26 16:44:08 +03:00
|
|
|
+ "/Testing/CTestBatch.txt");
|
2009-09-10 19:18:05 +04:00
|
|
|
|
|
|
|
sbatch.SetCommand("sbatch");
|
|
|
|
sbatch.SetCommandArguments(args);
|
2009-10-26 16:44:08 +03:00
|
|
|
/*if(sbatch.StartProcess())
|
2009-09-10 19:18:05 +04:00
|
|
|
{
|
|
|
|
//success condition
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//fail condition
|
2009-10-26 16:44:08 +03:00
|
|
|
}*/
|
2009-09-10 19:18:05 +04:00
|
|
|
}
|