diff options
author | Brad King <brad.king@kitware.com> | 2012-11-06 19:14:13 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-11-06 19:14:13 (GMT) |
commit | da6b0ffe5d7cb44bf24ee8ed694b9f25e15e82c3 (patch) | |
tree | 8c34f13509fd17735a2e247f57d58e7ae320b7c8 /Source/cmCTest.cxx | |
parent | 7fa265d79e1e037b8bcdf5527ef75995e26b0ebb (diff) | |
parent | 1cfaa2f1a00ab2b6a72dc2e681043317e41a3d0f (diff) | |
download | CMake-da6b0ffe5d7cb44bf24ee8ed694b9f25e15e82c3.zip CMake-da6b0ffe5d7cb44bf24ee8ed694b9f25e15e82c3.tar.gz CMake-da6b0ffe5d7cb44bf24ee8ed694b9f25e15e82c3.tar.bz2 |
Merge topic 'ctest-SUBMIT_INDEX-cdash'
1cfaa2f CTest: Allow SUBMIT_INDEX with CDash
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index a6d04b7..bb6f3f2 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -327,6 +327,7 @@ cmCTest::cmCTest() this->OutputLogFileLastTag = -1; this->SuppressUpdatingCTestConfiguration = false; this->DartVersion = 1; + this->DropSiteCDash = false; this->OutputTestOutputOnTestFailure = false; this->ComputedCompressTestOutput = false; this->ComputedCompressMemCheckOutput = false; @@ -653,6 +654,7 @@ bool cmCTest::InitializeFromCommand(cmCTestStartCommand* command) = this->GetCTestConfiguration("SourceDirectory").c_str(); std::string bld_dir = this->GetCTestConfiguration("BuildDirectory").c_str(); this->DartVersion = 1; + this->DropSiteCDash = false; for(Part p = PartStart; p != PartCount; p = Part(p+1)) { this->Parts[p].SubmitFiles.clear(); @@ -719,6 +721,7 @@ bool cmCTest::InitializeFromCommand(cmCTestStartCommand* command) return false; } } + this->DropSiteCDash = mf->IsOn("CTEST_DROP_SITE_CDASH"); if ( !this->Initialize(bld_dir.c_str(), command) ) { |