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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <string>
#include <vector>
#include "cmCTestLaunchReporter.h"
namespace cmsys {
class RegularExpression;
}
/** \class cmCTestLaunch
* \brief Launcher for make rules to report results for ctest
*
* This implements the 'ctest --launch' tool.
*/
class cmCTestLaunch
{
public:
enum class Op
{
Normal,
Instrument,
};
/** Entry point from ctest executable main(). */
static int Main(int argc, char const* const argv[], Op operation);
cmCTestLaunch(cmCTestLaunch const&) = delete;
cmCTestLaunch& operator=(cmCTestLaunch const&) = delete;
private:
// Initialize the launcher from its command line.
cmCTestLaunch(int argc, char const* const* argv, Op operation);
~cmCTestLaunch();
// Run the real command.
int Run();
void RunChild();
// Method to check the result of the real command.
bool CheckResults();
// Parse out launcher-specific options specified before the real command.
bool ParseArguments(int argc, char const* const* argv);
// The real command line appearing after launcher arguments.
std::vector<std::string> RealArgV;
// The real command line after response file expansion.
std::vector<std::string> RealArgs;
void HandleRealArg(char const* arg);
// Whether or not any data have been written to stdout or stderr.
bool HaveOut;
bool HaveErr;
// Load custom rules to match warnings and their exceptions.
bool ScrapeRulesLoaded;
void LoadScrapeRules();
void LoadScrapeRules(char const* purpose,
std::vector<cmsys::RegularExpression>& regexps) const;
bool ScrapeLog(std::string const& fname);
// Helper class to generate the xml fragment.
cmCTestLaunchReporter Reporter;
// Configuration
void LoadConfig();
// Mode
Op Operation;
};
|