Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.SwitchTest.test410892_6 - 10 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 22 builds (Since #111 )
Took 1.1 sec.

Error Message

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

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

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

Stacktrace

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

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

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 4)\n
	int var2 = 0;\n
	    ^^^^\n
The value of the local variable var2 is not used\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.SwitchTest.test410892_6(SwitchTest.java:2853)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.SwitchTest#test410892_6 - 10
X.java [
public class X {
   static {
        int var1 = 0;
        int var2 = 0;
        String s = "Test2";
        switch (s) {
        case "test": 
            var2 = ++var1 % 2;
            break;
        }
   }
}
]


Full results sent to /tmp/comptest/run.1584245034298/10.0.2_20200315_040443.txt

Standard Error

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