Skip to content

Failed

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

Failing for the past 1 build (Since #44 )
Took 0.82 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 - 12
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/genie.jdt/comptest/run.1565715170219/12_20190813_125251.txt

Standard Error

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