diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-11 15:29:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-11 15:29:29 (GMT) |
commit | a6e9dd6cfce2d9d56941483e02badd72c167e56a (patch) | |
tree | b4c3305b9ea434a154f7007f3f7bd00f67ea8eb6 | |
parent | a116420839639f7d8d8fea7b9542c563c3e90ba6 (diff) | |
download | CMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.zip CMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.tar.gz CMake-a6e9dd6cfce2d9d56941483e02badd72c167e56a.tar.bz2 |
FIX: fix output of passing tests
-rw-r--r-- | Source/ctest.cxx | 5 |
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; |