Explorar el Código

ENH: now limits warnings and error report to 50 each

Ken Martin hace 21 años
padre
commit
ba892527a8
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      Source/CTest/cmCTestBuildHandler.cxx

+ 2 - 2
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++ )