diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-02-05 00:00:20 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2010-02-05 00:00:20 (GMT) |
commit | 46ff4bbd0af285b0058072c6df7cf45944b2c5f7 (patch) | |
tree | 271dbe950ed42cc26583446d572c0a2bf3c93618 /Source/cmCTest.cxx | |
parent | a0cc49a9157a2dd097ada0723a30abad39ad0d45 (diff) | |
download | CMake-46ff4bbd0af285b0058072c6df7cf45944b2c5f7.zip CMake-46ff4bbd0af285b0058072c6df7cf45944b2c5f7.tar.gz CMake-46ff4bbd0af285b0058072c6df7cf45944b2c5f7.tar.bz2 |
Fix HPUX issue with test, by doing the query to cdash for its version before any test is started.
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1b578a9..2e2139e 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -349,7 +349,9 @@ cmCTest::cmCTest() { it->second->SetCTestInstance(this); } - + // call this so that the information is cached up front + // and not the first time EndTest is called. + this->ShouldCompressTestOutput(); // Make sure we can capture the build tool output. cmSystemTools::EnableVSConsoleOutput(); } |