Skip to content

Failed

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

Failing for the past 1 build (Since #168 )
Took 0.64 sec.

Error Message

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
 boolean b=false;\n
         ^\n
The value of the local variable b is not used\n
----------\n
2. WARNING in X.java (at line 6)\n
 int k = 2;\n
     ^\n
The value of the local variable k is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
 boolean b=false;\n
         ^\n
The value of the local variable b is not used\n
----------\n
2. WARNING in X.java (at line 6)\n
 int k = 2;\n
     ^\n
The value of the local variable k is not used\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 4)\n
	boolean b=false;\n
	        ^\n
The value of the local variable b is not used\n
----------\n
2. WARNING in X.java (at line 6)\n
	int k = 2;\n
	    ^\n
The value of the local variable k is not used\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
	boolean b=false;\n
	        ^\n
The value of the local variable b is not used\n
----------\n
2. WARNING in X.java (at line 6)\n
	int k = 2;\n
	    ^\n
The value of the local variable k is not used\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest.test0046(ProgrammingProblemsTest.java:1706)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.ProgrammingProblemsTest#test0046 - 1.8
X.java [
class X {
    int foo() {
        int i=1;
        boolean b=false;
        b|=true;
        int k = 2;
        --k;
        k+=3;
        Integer j = 3;
        j++;
        i++;
        return i++;
    }
}
]


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

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