mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
e11410bb0c
5901699672
cmDepends: Remove attempt to change directory that always failse60e4dfc88
cmWorkingDirectory: Check success of current dir changese654622aee
Tests: Add --build-and-test test casea865f0beb2
Tests: Confirm test working dir set successfully Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1817
129 lines
3.3 KiB
C++
129 lines
3.3 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmCTestRunTest_h
|
|
#define cmCTestRunTest_h
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <set>
|
|
#include <stddef.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmCTestTestHandler.h"
|
|
#include "cmDuration.h"
|
|
#include "cmProcess.h" // IWYU pragma: keep (for unique_ptr)
|
|
|
|
class cmCTest;
|
|
class cmCTestMultiProcessHandler;
|
|
|
|
/** \class cmRunTest
|
|
* \brief represents a single test to be run
|
|
*
|
|
* cmRunTest contains the information related to running a single test
|
|
*/
|
|
class cmCTestRunTest
|
|
{
|
|
public:
|
|
explicit cmCTestRunTest(cmCTestMultiProcessHandler& multiHandler);
|
|
|
|
~cmCTestRunTest() = default;
|
|
|
|
void SetNumberOfRuns(int n) { this->NumberOfRunsLeft = n; }
|
|
void SetRunUntilFailOn() { this->RunUntilFail = true; }
|
|
void SetTestProperties(cmCTestTestHandler::cmCTestTestProperties* prop)
|
|
{
|
|
this->TestProperties = prop;
|
|
}
|
|
|
|
cmCTestTestHandler::cmCTestTestProperties* GetTestProperties()
|
|
{
|
|
return this->TestProperties;
|
|
}
|
|
|
|
void SetIndex(int i) { this->Index = i; }
|
|
|
|
int GetIndex() { return this->Index; }
|
|
|
|
void AddFailedDependency(const std::string& failedTest)
|
|
{
|
|
this->FailedDependencies.insert(failedTest);
|
|
}
|
|
|
|
std::string GetProcessOutput() { return this->ProcessOutput; }
|
|
|
|
cmCTestTestHandler::cmCTestTestResult GetTestResults()
|
|
{
|
|
return this->TestResult;
|
|
}
|
|
|
|
// Read and store output. Returns true if it must be called again.
|
|
void CheckOutput(std::string const& line);
|
|
|
|
// Compresses the output, writing to CompressedOutput
|
|
void CompressOutput();
|
|
|
|
// launch the test process, return whether it started correctly
|
|
bool StartTest(size_t total);
|
|
// capture and report the test results
|
|
bool EndTest(size_t completed, size_t total, bool started);
|
|
// Called by ctest -N to log the command string
|
|
void ComputeArguments();
|
|
|
|
void ComputeWeightedCost();
|
|
|
|
bool StartAgain();
|
|
|
|
void StartFailure(std::string const& output);
|
|
|
|
cmCTest* GetCTest() const { return this->CTest; }
|
|
|
|
void FinalizeTest();
|
|
|
|
private:
|
|
bool NeedsToRerun();
|
|
void DartProcessing();
|
|
void ExeNotFound(std::string exe);
|
|
bool ForkProcess(cmDuration testTimeOut, bool explicitTimeout,
|
|
std::vector<std::string>* environment,
|
|
std::vector<size_t>* affinity);
|
|
void WriteLogOutputTop(size_t completed, size_t total);
|
|
// Run post processing of the process output for MemCheck
|
|
void MemCheckPostProcess();
|
|
|
|
cmCTestTestHandler::cmCTestTestProperties* TestProperties;
|
|
// Pointer back to the "parent"; the handler that invoked this test run
|
|
cmCTestTestHandler* TestHandler;
|
|
cmCTest* CTest;
|
|
std::unique_ptr<cmProcess> TestProcess;
|
|
std::string ProcessOutput;
|
|
std::string CompressedOutput;
|
|
double CompressionRatio;
|
|
// The test results
|
|
cmCTestTestHandler::cmCTestTestResult TestResult;
|
|
cmCTestMultiProcessHandler& MultiTestHandler;
|
|
int Index;
|
|
std::set<std::string> FailedDependencies;
|
|
std::string StartTime;
|
|
std::string ActualCommand;
|
|
std::vector<std::string> Arguments;
|
|
bool RunUntilFail;
|
|
int NumberOfRunsLeft;
|
|
bool RunAgain;
|
|
size_t TotalNumberOfTests;
|
|
};
|
|
|
|
inline int getNumWidth(size_t n)
|
|
{
|
|
int numWidth = 1;
|
|
if (n >= 10) {
|
|
numWidth = 2;
|
|
}
|
|
if (n >= 100) {
|
|
numWidth = 3;
|
|
}
|
|
return numWidth;
|
|
}
|
|
|
|
#endif
|