Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest.test408038e - 11 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #43 )
Took 0.78 sec.

Error Message

test408038e - Eclipse found warning(s) but Javac did not find any.
----------- Expected ------------

------------ but was ------------
----------\n
1. WARNING in X.java (at line 3)\n
 private X(int x) {i = x;}\n
         ^^^^^^^^\n
The constructor X(int) is never used locally\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 3)\n
 private X(int x) {i = x;}\n
         ^^^^^^^^\n
The constructor X(int) is never used locally\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 3)\n
	private X(int x) {i = x;}\n
	        ^^^^^^^^\n
The constructor X(int) is never used locally\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 3)\n
	private X(int x) {i = x;}\n
	        ^^^^^^^^\n
The constructor X(int) is never used locally\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest.test408038e(ProblemConstructorTest.java:492)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProblemConstructorTest#test408038e - 11
X.java [
class X {
	int i;
	private X(int x) {i = x;}
	X() {}
	public int foo() {
		X x = new X();
		return x.i;
	}
}

]


Full results sent to /tmp/genie.jdt/comptest/run.1565427784609/11_20190810_050312.txt

Standard Error

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