From 46ff4bbd0af285b0058072c6df7cf45944b2c5f7 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 4 Feb 2010 19:00:20 -0500 Subject: [PATCH] Fix HPUX issue with test, by doing the query to cdash for its version before any test is started. --- Source/cmCTest.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1b578a904..2e2139e47 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(); }