summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/cmCTest.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 7c53378..b4fbaa8 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -2132,6 +2132,10 @@ int cmCTest::TestDirectory(bool memcheck)
}
float percent = float(passed.size()) * 100.0f / total;
+ if ( failed.size() > 0 && percent > 99)
+ {
+ percent = 99;
+ }
fprintf(stderr,"\n%.0f%% tests passed, %i tests failed out of %i\n",
percent, int(failed.size()), total);