CMake/Source/cmTest.cxx
Kitware Robot 1772622772 LICENSE: Replace references to Copyright.txt with LICENSE.rst
```
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
```
2025-03-03 10:43:35 -05:00

77 lines
1.7 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 "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;
}