You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/GenericTypeTest.java
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ public GenericTypeTest(String name) {
58
58
// Static initializer to specify tests subset using TESTS_* static variables
59
59
// All specified tests which does not belong to the class are skipped...
Copy file name to clipboardExpand all lines: org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/ResourceLeakTests.java
+24-3Lines changed: 24 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@
8
8
*
9
9
* SPDX-License-Identifier: EPL-2.0
10
10
*
11
+
* This is an implementation of an early-draft specification developed under the Java
12
+
* Community Process (JCP) and is made available for testing and evaluation purposes
13
+
* only. The code is not compatible with any specification of the JCP.
14
+
*
11
15
* Contributors:
12
16
* Stephan Herrmann - initial API and implementation
13
17
* Nikolay Metchev (nikolaymetchev@gmail.com) - Contributions for
@@ -76,7 +80,7 @@ abstract class BaseStreamEx<T, S extends BaseStream<T, S>, SPLTR extends Spliter
76
80
""";
77
81
78
82
static {
79
-
// TESTS_NAMES = new String[] { "testBug463320" };
83
+
// TESTS_NAMES = new String[] { "testBug368709b" };
80
84
// TESTS_NUMBERS = new int[] { 50 };
81
85
// TESTS_RANGE = new int[] { 11, -1 };
82
86
}
@@ -3087,6 +3091,14 @@ public void test063e() {
3087
3091
// original test case from jgit
3088
3092
publicvoidtestBug368709a() {
3089
3093
if (this.complianceLevel < ClassFileConstants.JDK1_5) return;
3094
+
StringJDK8225763_Fix = isJRE25Plus ?
3095
+
"2. ERROR in X.java (at line 17)\n" +
3096
+
" in = new BufferedInputStream(new InflaterInputStream(in, wc.inflater(), 8192), 8192);\n" +
0 commit comments