1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

bug 212596: JUnit failures in cdt.managedbuilder.test.suite

Added missing empty lines to benchmarks to turn down noise on the console
This commit is contained in:
Andrew Gvozdev 2009-11-03 23:31:50 +00:00
parent 3d8d4261c6
commit 2321c8338a
31 changed files with 40 additions and 8 deletions

View file

@ -1,7 +1,8 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################
LIBS :=
USER_OBJS :=
################################################################################
# Automatically-generated file. Do not edit!
################################################################################
LIBS :=
USER_OBJS :=

View file

@ -486,11 +486,13 @@ public class ManagedBuildTestHelper {
for (int i=0;i<benchmarkArray.size() || i<testArray.size();i++) {
if (!(i<benchmarkArray.size())) {
System.out.println(testFile.lastSegment()+": extra line =["+testArray.get(i)+ "] not in benchmark. File "+testFile);
System.out.println(testFile.lastSegment()+": benchmark file "+benchmarkFile);
extraLines.add(testArray.get(i));
continue;
}
if (!(i<testArray.size())) {
System.out.println(testFile.lastSegment()+": missing line =["+benchmarkArray.get(i)+ "] comparing to benchmark. File "+testFile);
System.out.println(testFile.lastSegment()+": benchmark file "+benchmarkFile);
extraLines.add(benchmarkArray.get(i));
continue;
}