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

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
LIBS := LIBS :=
USER_OBJS := USER_OBJS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
LIBS := LIBS :=
USER_OBJS := USER_OBJS :=

View file

@ -5,3 +5,4 @@
LIBS := LIBS :=
USER_OBJS := USER_OBJS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
LIBS := LIBS :=
USER_OBJS := USER_OBJS :=

View file

@ -5,3 +5,4 @@
LIBS := LIBS :=
USER_OBJS := USER_OBJS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
USER_OBJS := USER_OBJS :=
LIBS := LIBS :=

View file

@ -5,3 +5,4 @@
LIBS := -llib2 LIBS := -llib2
USER_OBJS := uo2 USER_OBJS := uo2

View file

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