mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Add `test_prep/<test_name>` convenience targets to the ninja generator to build dependencies of tests, and `test_prep/all` to build the dependencies of all tests. Build dependencies of a test include: - Executables directly invoked by test `COMMAND`. - Targets mentioned in generator expressionf os test `COMMAND`. - Anything explicitly listed with the new `BUILD_DEPENDS` argument of `add_test`. Issue: #27613
84 lines
1.9 KiB
C++
84 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. */
|
|
#include "cmTest.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "cmMakefile.h"
|
|
#include "cmProperty.h"
|
|
#include "cmState.h"
|
|
#include "cmValue.h"
|
|
|
|
cmTest::cmTest(cmMakefile* mf)
|
|
: Backtrace(mf->GetBacktrace())
|
|
, PolicyStatusCMP0158(mf->GetPolicyStatus(cmPolicies::CMP0158))
|
|
, PolicyStatusCMP0178(mf->GetPolicyStatus(cmPolicies::CMP0178))
|
|
{
|
|
this->Makefile = mf;
|
|
this->OldStyle = true;
|
|
}
|
|
|
|
cmTest::~cmTest() = default;
|
|
|
|
cmListFileBacktrace const& cmTest::GetBacktrace() const
|
|
{
|
|
return this->Backtrace;
|
|
}
|
|
|
|
void cmTest::SetName(std::string const& name)
|
|
{
|
|
this->Name = name;
|
|
}
|
|
|
|
void cmTest::SetCommand(std::vector<std::string> const& command)
|
|
{
|
|
this->Command = command;
|
|
}
|
|
|
|
void cmTest::SetBuildDependencies(std::vector<std::string> deps)
|
|
{
|
|
this->BuildDependencies = std::move(deps);
|
|
}
|
|
|
|
cmValue cmTest::GetProperty(std::string const& prop) const
|
|
{
|
|
cmValue retVal = this->Properties.GetPropertyValue(prop);
|
|
if (!retVal) {
|
|
bool const chain =
|
|
this->Makefile->GetState()->IsPropertyChained(prop, cmProperty::TEST);
|
|
if (chain) {
|
|
if (cmValue p = this->Makefile->GetProperty(prop, chain)) {
|
|
return p;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
return retVal;
|
|
}
|
|
|
|
bool cmTest::GetPropertyAsBool(std::string const& prop) const
|
|
{
|
|
return this->GetProperty(prop).IsOn();
|
|
}
|
|
|
|
void cmTest::SetProperty(std::string const& prop, cmValue value)
|
|
{
|
|
this->Properties.SetProperty(prop, value);
|
|
}
|
|
|
|
void cmTest::AppendProperty(std::string const& prop, std::string const& value,
|
|
bool asString)
|
|
{
|
|
this->Properties.AppendProperty(prop, value, asString);
|
|
}
|
|
|
|
bool cmTest::GetCommandExpandLists() const
|
|
{
|
|
return this->CommandExpandLists;
|
|
}
|
|
|
|
void cmTest::SetCommandExpandLists(bool b)
|
|
{
|
|
this->CommandExpandLists = b;
|
|
}
|