2016-09-27 22:01:08 +03: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 19:18:05 +04:00
|
|
|
#ifndef cmCTestBatchTestHandler_h
|
|
|
|
#define cmCTestBatchTestHandler_h
|
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2009-09-10 19:18:05 +04:00
|
|
|
#include <cmCTestMultiProcessHandler.h>
|
2014-10-05 00:19:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <string>
|
2009-09-10 19:18:05 +04:00
|
|
|
|
|
|
|
/** \class cmCTestBatchTestHandler
|
|
|
|
* \brief run parallel ctest
|
|
|
|
*
|
2012-08-13 21:42:58 +04:00
|
|
|
* cmCTestBatchTestHandler
|
2009-09-10 19:18:05 +04:00
|
|
|
*/
|
|
|
|
class cmCTestBatchTestHandler : public cmCTestMultiProcessHandler
|
|
|
|
{
|
|
|
|
public:
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmCTestBatchTestHandler() CM_OVERRIDE;
|
|
|
|
void RunTests() CM_OVERRIDE;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2009-09-10 19:18:05 +04:00
|
|
|
protected:
|
|
|
|
void WriteBatchScript();
|
2016-06-08 23:29:15 +03:00
|
|
|
void WriteSrunArgs(int test, std::ostream& fout);
|
|
|
|
void WriteTestCommand(int test, std::ostream& fout);
|
2009-09-10 19:18:05 +04:00
|
|
|
|
|
|
|
void SubmitBatchScript();
|
|
|
|
|
|
|
|
std::string Script;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|