summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestStartCommand.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/cmCTestStartCommand.cxx
parentc0161e9e57321f283fc88812779d627fb722a40a (diff)
downloadCMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.zip
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.gz
CMake-862f5df25c509e2df59d00597b0c4b4d14cf5eaa.tar.bz2
STYLE: Fix some style issues
Diffstat (limited to 'Source/CTest/cmCTestStartCommand.cxx')
-rw-r--r--Source/CTest/cmCTestStartCommand.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/CTest/cmCTestStartCommand.cxx b/Source/CTest/cmCTestStartCommand.cxx
index 1160805..38b5cd7 100644
--- a/Source/CTest/cmCTestStartCommand.cxx
+++ b/Source/CTest/cmCTestStartCommand.cxx
@@ -66,22 +66,22 @@ bool cmCTestStartCommand::InitialPass(
"as an argument or set CTEST_BINARY_DIRECTORY");
return false;
}
- m_CTest->EmptyCTestConfiguration();
- m_CTest->SetCTestConfiguration("SourceDirectory", src_dir);
- m_CTest->SetCTestConfiguration("BuildDirectory", bld_dir);
+ this->CTest->EmptyCTestConfiguration();
+ this->CTest->SetCTestConfiguration("SourceDirectory", src_dir);
+ this->CTest->SetCTestConfiguration("BuildDirectory", bld_dir);
- cmCTestLog(m_CTest, HANDLER_OUTPUT, "Run dashboard with model " << smodel
- << std::endl
+ cmCTestLog(this->CTest, HANDLER_OUTPUT, "Run dashboard with model "
+ << smodel << std::endl
<< " Source directory: " << src_dir << std::endl
<< " Build directory: " << bld_dir << std::endl);
m_Makefile->AddDefinition("CTEST_RUN_CURRENT_SCRIPT", "OFF");
- m_CTest->SetSuppressUpdatingCTestConfiguration(true);
- int model = m_CTest->GetTestModelFromString(smodel);
- m_CTest->SetTestModel(model);
- m_CTest->SetProduceXML(true);
+ this->CTest->SetSuppressUpdatingCTestConfiguration(true);
+ int model = this->CTest->GetTestModelFromString(smodel);
+ this->CTest->SetTestModel(model);
+ this->CTest->SetProduceXML(true);
- return m_CTest->InitializeFromCommand(this, true);
+ return this->CTest->InitializeFromCommand(this, true);
}