summaryrefslogtreecommitdiffstats
path: root/Source/cmTest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r--Source/cmTest.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx
index 7182122..ec61ec6 100644
--- a/Source/cmTest.cxx
+++ b/Source/cmTest.cxx
@@ -16,7 +16,6 @@
#include "cmMakefile.h"
#include "cmake.h"
-//----------------------------------------------------------------------------
cmTest::cmTest(cmMakefile* mf)
: Backtrace(mf->GetBacktrace())
{
@@ -24,30 +23,25 @@ cmTest::cmTest(cmMakefile* mf)
this->OldStyle = true;
}
-//----------------------------------------------------------------------------
cmTest::~cmTest()
{
}
-//----------------------------------------------------------------------------
cmListFileBacktrace const& cmTest::GetBacktrace() const
{
return this->Backtrace;
}
-//----------------------------------------------------------------------------
void cmTest::SetName(const std::string& name)
{
this->Name = name;
}
-//----------------------------------------------------------------------------
void cmTest::SetCommand(std::vector<std::string> const& command)
{
this->Command = command;
}
-//----------------------------------------------------------------------------
const char *cmTest::GetProperty(const std::string& prop) const
{
const char *retVal = this->Properties.GetPropertyValue(prop);
@@ -63,19 +57,16 @@ const char *cmTest::GetProperty(const std::string& prop) const
return retVal;
}
-//----------------------------------------------------------------------------
bool cmTest::GetPropertyAsBool(const std::string& prop) const
{
return cmSystemTools::IsOn(this->GetProperty(prop));
}
-//----------------------------------------------------------------------------
void cmTest::SetProperty(const std::string& prop, const char* value)
{
this->Properties.SetProperty(prop, value);
}
-//----------------------------------------------------------------------------
void cmTest::AppendProperty(const std::string& prop,
const char* value, bool asString)
{