Migrate all JDK 9 related tests to JDK 11

This commit is contained in:
Dmitriy Novozhilov
2021-09-22 17:21:53 +03:00
committed by TeamCityServer
parent ce3562f0e8
commit de7fb9606a
92 changed files with 284 additions and 306 deletions
@@ -6,5 +6,5 @@
package org.jetbrains.kotlin.test
enum class TestJavacVersion {
JAVAC_1_8, JAVAC_9
}
JAVAC_1_8, JAVAC_11
}
@@ -26,9 +26,6 @@ enum class TestJdkKind(val requiresSeparateProcess: Boolean = false) {
// JDK found at $JDK_16
FULL_JDK_6(requiresSeparateProcess = true),
// JDK found at $JDK_9
FULL_JDK_9(requiresSeparateProcess = true),
// JDK found at $JDK_11
FULL_JDK_11(requiresSeparateProcess = true),
@@ -140,11 +140,6 @@ public class KtTestUtil {
return getJdkHome("JDK_8", "JDK_18");
}
@NotNull
public static File getJdk9Home() {
return getJdkHome("JDK_9", "JDK_19");
}
@NotNull
public static File getJdk11Home() {
return getJdkHome("JDK_11");