summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-03-11 15:29:29 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-03-11 15:29:29 (GMT)
commita6e9dd6cfce2d9d56941483e02badd72c167e56a (patch)
treeb4c3305b9ea434a154f7007f3f7bd00f67ea8eb6
parenta116420839639f7d8d8fea7b9542c563c3e90ba6 (diff)
downloadCMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.zip
CMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.tar.gz
CMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.tar.bz2
FIX: fix output of passing tests
-rw-r--r--Source/ctest.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 66ebb2a..fee6f2a 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -203,10 +203,7 @@ int main (int argc, char *argv[])
// run ctest
std::string output;
int res = inst.Run(args,&output);
- if (res)
- {
- std::cout << output;
- }
+ std::cout << output;
cmListFileCache::ClearCache();
return res;