2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-09-10 11:18:05 -04:00
|
|
|
#ifndef cmCTestBatchTestHandler_h
|
|
|
|
#define cmCTestBatchTestHandler_h
|
|
|
|
|
2016-08-24 22:01:40 +02:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2009-09-10 11:18:05 -04:00
|
|
|
#include <cmCTestMultiProcessHandler.h>
|
2014-10-04 14:19:13 -06:00
|
|
|
#include <cmsys/FStream.hxx>
|
2016-08-24 22:01:40 +02:00
|
|
|
#include <string>
|
2009-09-10 11:18:05 -04:00
|
|
|
|
|
|
|
/** \class cmCTestBatchTestHandler
|
|
|
|
* \brief run parallel ctest
|
|
|
|
*
|
2012-08-13 13:42:58 -04:00
|
|
|
* cmCTestBatchTestHandler
|
2009-09-10 11:18:05 -04:00
|
|
|
*/
|
|
|
|
class cmCTestBatchTestHandler : public cmCTestMultiProcessHandler
|
|
|
|
{
|
|
|
|
public:
|
2016-06-27 21:25:27 +02:00
|
|
|
~cmCTestBatchTestHandler() CM_OVERRIDE;
|
|
|
|
void RunTests() CM_OVERRIDE;
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2009-09-10 11:18:05 -04:00
|
|
|
protected:
|
|
|
|
void WriteBatchScript();
|
2016-06-08 22:29:15 +02:00
|
|
|
void WriteSrunArgs(int test, std::ostream& fout);
|
|
|
|
void WriteTestCommand(int test, std::ostream& fout);
|
2009-09-10 11:18:05 -04:00
|
|
|
|
|
|
|
void SubmitBatchScript();
|
|
|
|
|
|
|
|
std::string Script;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|