blob: 4a5dac1d6ccaf06d15ebdaae97e2c837f055a16a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmCTestBatchTestHandler_h
#define cmCTestBatchTestHandler_h
#include "cmConfigure.h"
#include "cmCTestMultiProcessHandler.h"
#include "cmsys/FStream.hxx"
#include <string>
/** \class cmCTestBatchTestHandler
* \brief run parallel ctest
*
* cmCTestBatchTestHandler
*/
class cmCTestBatchTestHandler : public cmCTestMultiProcessHandler
{
public:
~cmCTestBatchTestHandler() CM_OVERRIDE;
void RunTests() CM_OVERRIDE;
protected:
void WriteBatchScript();
void WriteSrunArgs(int test, std::ostream& fout);
void WriteTestCommand(int test, std::ostream& fout);
void SubmitBatchScript();
std::string Script;
};
#endif
|