[Test] Migrate tests for java 9 to regular test infrastructure

This commit is contained in:
Dmitriy Novozhilov
2021-07-14 13:27:10 +03:00
committed by teamcityserver
parent ca214bef30
commit 4f73ebbcbd
28 changed files with 303 additions and 246 deletions
@@ -92,7 +92,13 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
"codegen/box",
targetBackend = TargetBackend.JVM,
skipIgnored = true,
excludeDirs = listOf("ranges/stepped", "compileKotlinAgainstKotlin")
excludeDirs = listOf(
"ranges/stepped",
"compileKotlinAgainstKotlin",
"testsWithJava9",
"testsWithJava15",
"testsWithJava17"
)
)
}
@@ -112,14 +118,6 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
model("codegen/java15/box", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractJdk9BlackBoxCodegenTest> {
model("codegen/java9/box")
}
testClass<AbstractJdk9IrBlackBoxCodegenTest> {
model("codegen/java9/box", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractScriptCodegenTest> {
model("codegen/script", extension = "kts")
}