summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTestCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-10 20:03:09 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-10 20:03:09 (GMT)
commit862f5df25c509e2df59d00597b0c4b4d14cf5eaa (patch)
tree79e19e06c0961f43690788cac9c2f23b4931a2cf /Source/CTest/cmCTestTestCommand.cxx
parentc0161e9e57321f283fc88812779d627fb722a40a (diff)
downloadCMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.zip
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.gz
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.bz2
STYLE: Fix some style issues
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.cxx')
-rw-r--r--Source/CTest/cmCTestTestCommand.cxx31
1 files changed, 16 insertions, 15 deletions
diff --git a/Source/CTest/cmCTestTestCommand.cxx b/Source/CTest/cmCTestTestCommand.cxx
index 746f020..f839b69 100644
--- a/Source/CTest/cmCTestTestCommand.cxx
+++ b/Source/CTest/cmCTestTestCommand.cxx
@@ -21,17 +21,17 @@
cmCTestTestCommand::cmCTestTestCommand()
{
- m_Arguments[ctt_START] = "START";
- m_Arguments[ctt_END] = "END";
- m_Arguments[ctt_STRIDE] = "STRIDE";
- m_Arguments[ctt_LAST] = 0;
- m_Last = ctt_LAST;
+ this->Arguments[ctt_START] = "START";
+ this->Arguments[ctt_END] = "END";
+ this->Arguments[ctt_STRIDE] = "STRIDE";
+ this->Arguments[ctt_LAST] = 0;
+ this->Last = ctt_LAST;
}
cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
{
const char* ctestTimeout = m_Makefile->GetDefinition("CTEST_TEST_TIMEOUT");
- double timeout = m_CTest->GetTimeOut();
+ double timeout = this->CTest->GetTimeOut();
if ( ctestTimeout )
{
timeout = atof(ctestTimeout);
@@ -44,24 +44,25 @@ cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
timeout = 600;
}
}
- m_CTest->SetTimeOut(timeout);
+ this->CTest->SetTimeOut(timeout);
cmCTestGenericHandler* handler = this->InitializeActualHandler();
- if ( m_Values[ctt_START] || m_Values[ctt_END] || m_Values[ctt_STRIDE] )
+ if ( this->Values[ctt_START] || this->Values[ctt_END] ||
+ this->Values[ctt_STRIDE] )
{
cmOStringStream testsToRunString;
- if ( m_Values[ctt_START] )
+ if ( this->Values[ctt_START] )
{
- testsToRunString << m_Values[ctt_START];
+ testsToRunString << this->Values[ctt_START];
}
testsToRunString << ",";
- if ( m_Values[ctt_END] )
+ if ( this->Values[ctt_END] )
{
- testsToRunString << m_Values[ctt_END];
+ testsToRunString << this->Values[ctt_END];
}
testsToRunString << ",";
- if ( m_Values[ctt_STRIDE] )
+ if ( this->Values[ctt_STRIDE] )
{
- testsToRunString << m_Values[ctt_STRIDE];
+ testsToRunString << this->Values[ctt_STRIDE];
}
handler->SetOption("TestsToRunInformation",
testsToRunString.str().c_str());
@@ -71,6 +72,6 @@ cmCTestGenericHandler* cmCTestTestCommand::InitializeHandler()
cmCTestGenericHandler* cmCTestTestCommand::InitializeActualHandler()
{
- return m_CTest->GetInitializedHandler("test");
+ return this->CTest->GetInitializedHandler("test");
}