summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-01-12 18:58:00 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-01-12 18:58:00 (GMT)
commitba892527a89e635975ad33899797f3f151af10f9 (patch)
tree9598b1011e0045523b3bb169d327c6099c06e7d8 /Source/CTest
parent6207a6d0edb59d1b1682eee940d56a488277c44f (diff)
downloadCMake-ba892527a89e635975ad33899797f3f151af10f9.zip
CMake-ba892527a89e635975ad33899797f3f151af10f9.tar.gz
CMake-ba892527a89e635975ad33899797f3f151af10f9.tar.bz2
ENH: now limits warnings and error report to 50 each
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestBuildHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx
index 1b5ed69..b4d96ed 100644
--- a/Source/CTest/cmCTestBuildHandler.cxx
+++ b/Source/CTest/cmCTestBuildHandler.cxx
@@ -465,8 +465,8 @@ void cmCTestBuildHandler::GenerateDartBuildOutput(
std::vector<cmCTestBuildErrorWarning>::iterator it;
// only report the first 50 warnings and first 50 errors
- unsigned short numErrorsAllowed = 2;
- unsigned short numWarningsAllowed = 10;
+ unsigned short numErrorsAllowed = 50;
+ unsigned short numWarningsAllowed = 50;
for ( it = ew.begin();
it != ew.end() && (numErrorsAllowed || numWarningsAllowed); it++ )