Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest.test0059 - 11 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

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

Error Message

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
 if (a != null){\n
         int j = 3;\n
         j++;\n
     }\n
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n
Dead code\n
----------\n
2. WARNING in X.java (at line 5)\n
 int j = 3;\n
     ^\n
The value of the local variable j is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
 if (a != null){\n
         int j = 3;\n
         j++;\n
     }\n
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n
Dead code\n
----------\n
2. WARNING in X.java (at line 5)\n
 int j = 3;\n
     ^\n
The value of the local variable j is not used\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
	if (a != null){\n
        	int j = 3;\n
        	j++;\n
    	}\n
	              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n
Dead code\n
----------\n
2. WARNING in X.java (at line 5)\n
	int j = 3;\n
	    ^\n
The value of the local variable j is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
	if (a != null){\n
        	int j = 3;\n
        	j++;\n
    	}\n
	              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n
Dead code\n
----------\n
2. WARNING in X.java (at line 5)\n
	int j = 3;\n
	    ^\n
The value of the local variable j is not used\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest.test0059(ProgrammingProblemsTest.java:2399)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest#test0059 - 11
X.java [
public class X {
    public static void main(String[] args) {
    	Object a = null;
    	if (a != null){
        	int j = 3;
        	j++;
    	}
    	System.out.println("OK");
    }
}
]


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

Standard Error

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