Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest.test120 - 1.8 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #9 )
Took 0.61 sec.

Error Message

test120 - Eclipse found error(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. ERROR in X.java (at line 8)\n
 public <E> void bar2(E e) {\n
                 ^^^^^^^^^\n
The method bar2(E) from the type X<T> can potentially be declared as static\n
----------\n
2. ERROR in X.java (at line 16)\n
 public <E,Y> void bar4() {\n
                   ^^^^^^\n
The method bar4() from the type X<T> can potentially be declared as static\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. ERROR in X.java (at line 8)\n
 public <E> void bar2(E e) {\n
                 ^^^^^^^^^\n
The method bar2(E) from the type X<T> can potentially be declared as static\n
----------\n
2. ERROR in X.java (at line 16)\n
 public <E,Y> void bar4() {\n
                   ^^^^^^\n
The method bar4() from the type X<T> can potentially be declared as static\n
----------\n
]>

Stacktrace

junit.framework.ComparisonFailure: test120 - Eclipse found error(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. ERROR in X.java (at line 8)\n
	public <E> void bar2(E e) {\n
	                ^^^^^^^^^\n
The method bar2(E) from the type X<T> can potentially be declared as static\n
----------\n
2. ERROR in X.java (at line 16)\n
	public <E,Y> void bar4() {\n
	                  ^^^^^^\n
The method bar4() from the type X<T> can potentially be declared as static\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. ERROR in X.java (at line 8)\n
	public <E> void bar2(E e) {\n
	                ^^^^^^^^^\n
The method bar2(E) from the type X<T> can potentially be declared as static\n
----------\n
2. ERROR in X.java (at line 16)\n
	public <E,Y> void bar4() {\n
	                  ^^^^^^\n
The method bar4() from the type X<T> can potentially be declared as static\n
----------\n
]>
	at org.eclipse.jdt.core.tests.junit.extension.TestCase.assertStringEquals(TestCase.java:260)
	at org.eclipse.jdt.core.tests.junit.extension.TestCase.assertEquals(TestCase.java:236)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runJavac(AbstractRegressionTest.java:2044)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runTest(AbstractRegressionTest.java:2814)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runTest(AbstractRegressionTest.java:2539)
	at org.eclipse.jdt.core.tests.compiler.regression.AbstractRegressionTest.runNegativeTest(AbstractRegressionTest.java:2220)
	at org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest.test120(ProblemTypeAndMethodTest.java:6637)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProblemTypeAndMethodTest#test120 - 1.8
X.java [
public class X<T> {
	public static int field1;
	public int field2;
	public void bar(T t) {
		X.field1 = 1;
		System.out.println(t);
	}
	public <E> void bar2(E e) {
		X.field1 = 1;
		System.out.println(e);
	}
	public <E> void bar3() {
		T a;
		System.out.println();
	}
	public <E,Y> void bar4() {
		Y a;
		System.out.println();
	}
}
]


Full results sent to /tmp/comptest/run.1514610271420/1.8.0_131_20171230_000432.txt

Standard Error

----------------------------------------