1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-10 07:10:32 +08:00
CMake/Source/cmTest.cxx
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

77 lines
1.7 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmTest.h"
#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;
}
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;
}