mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
34 lines
787 B
C++
34 lines
787 B
C++
/* 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
|