Skip to content

Failed

org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest.testBug258798_2c - 12 (from org.eclipse.jdt.core.tests.compiler.regression.TestAll)

Failing for the past 1 build (Since #44 )
Took 0.87 sec.

Error Message

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 7)\n
 Y(List<U> lu) { super(lu); }\n
           ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 7)\n
 Y(List<U> lu) { super(lu); }\n
           ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n
]>

Stacktrace

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

------------ but was ------------
----------\n
1. WARNING in X.java (at line 7)\n
	Y(List<U> lu) { super(lu); }\n
	          ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n

--------- Difference is ----------
 expected:<[]> but was:<[----------\n
1. WARNING in X.java (at line 7)\n
	Y(List<U> lu) { super(lu); }\n
	          ^^\n
Javadoc: Missing tag for parameter lu\n
----------\n
]>
	at org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest.testBug258798_2c(JavadocBugsTest.java:8232)

Standard Output

org.eclipse.jdt.core.tests.compiler.regression.JavadocBugsTest#testBug258798_2c - 12
X.java [
import java.util.*;
public class X<T> {
X(Object o) {}
}
class Y<U> extends X<U> {
/** @see X#X(Object) */
Y(List<U> lu) { super(lu); }
}

]

Standard Error

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