mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
79 lines
1.9 KiB
C++
79 lines
1.9 KiB
C++
/* 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;
|
|
};
|