Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest.test0055 - 1.8 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 2 builds (Since #167 )
Took 0.64 sec.

Error Message

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

------------ but was ------------
----------\n
1. WARNING in test1\E.java (at line 4)\n
 int a= 10;\n
     ^\n
The value of the local variable a is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in test1\E.java (at line 4)\n
 int a= 10;\n
     ^\n
The value of the local variable a is not used\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in test1\E.java (at line 4)\n
	int a= 10;\n
	    ^\n
The value of the local variable a is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in test1\E.java (at line 4)\n
	int a= 10;\n
	    ^\n
The value of the local variable a is not used\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest.test0055(ProgrammingProblemsTest.java:2287)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest#test0055 - 1.8
test1/E.java [
package test1;
public class E {
    private void foo() {
        int a= 10;
        a++;
        a--;
        --a;
        ++a;
        for ( ; ; a++) {
        }
    }
}
]


Full results sent to /home/jenkins/agent/workspace/eclipse.jdt.core-run.javac-1.8/tmp/comptest/run.1584479137560/1.8.0_202_20200317_210541.txt

Standard Error

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