[Tests] Add custom JVM target tests for K2

^KT-59630 Fixed
This commit is contained in:
Iaroslav Postovalov
2024-01-07 13:34:22 +01:00
committed by Space Team
parent dde2156f5f
commit 7c4e43938b
2 changed files with 9 additions and 0 deletions
@@ -9,6 +9,7 @@ dependencies {
testApi(projectTests(":compiler:test-infrastructure-utils"))
testApi(projectTests(":compiler:tests-compiler-utils"))
testApi(projectTests(":compiler:tests-common-new"))
testApi(projectTests(":compiler:fir:fir2ir"))
testApi(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter.api)
@@ -29,6 +29,14 @@ import org.junit.runner.RunWith
IrBlackBoxInlineCodegenWithBytecodeInlinerTestGenerated::class,
IrCompileKotlinAgainstInlineKotlinTestGenerated::class,
FirLightTreeBlackBoxCodegenTestGenerated::class,
FirLightTreeBlackBoxInlineCodegenWithBytecodeInlinerTestGenerated::class,
FirLightTreeSerializeCompileKotlinAgainstInlineKotlinTestGenerated::class,
FirPsiBlackBoxCodegenTestGenerated::class,
FirPsiBlackBoxInlineCodegenWithBytecodeInlinerTestGenerated::class,
FirPsiSerializeCompileKotlinAgainstInlineKotlinTestGenerated::class,
CoreJrtFsTest::class
)
@IncludeClassNamePatterns(".*Test.*Generated")