summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2010-02-05 00:00:20 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2010-02-05 00:00:20 (GMT)
commit46ff4bbd0af285b0058072c6df7cf45944b2c5f7 (patch)
tree271dbe950ed42cc26583446d572c0a2bf3c93618
parenta0cc49a9157a2dd097ada0723a30abad39ad0d45 (diff)
downloadCMake-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.
-rw-r--r--Source/cmCTest.cxx4
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();
}