From 7a8908a75b83efd605d1dc7ed7a5471e3104f89a Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Fri, 19 Jun 2020 11:47:14 +0300 Subject: [PATCH] [FIR-TEST] Change main module of `[JPS] Fast FIR tests` task It's needed to correctly run FIR spec tests --- gradle/jps.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/jps.gradle.kts b/gradle/jps.gradle.kts index 936326a8668..85e3f68c85f 100644 --- a/gradle/jps.gradle.kts +++ b/gradle/jps.gradle.kts @@ -64,7 +64,7 @@ fun setupGenerateAllTestsRunConfiguration() { fun setupFirRunConfiguration() { val junit = JUnit("_stub").apply { configureForKotlin("2048m") } - junit.moduleName = "kotlin.compiler.test" + junit.moduleName = "kotlin.compiler.tests-spec.test" junit.pattern = "^(org\\.jetbrains\\.kotlin\\.fir((?!\\.lightTree\\.benchmark)(\\.\\w+)*)\\.((?!(TreesCompareTest|TotalKotlinTest|RawFirBuilderTotalKotlinTestCase))\\w+)|org\\.jetbrains\\.kotlin\\.codegen\\.ir\\.FirBlackBoxCodegenTestGenerated|org\\.jetbrains\\.kotlin\\.spec\\.checkers\\.FirDiagnosticsTestSpecGenerated)\$" junit.vmParameters = junit.vmParameters.replace(rootDir.absolutePath, "\$PROJECT_DIR\$") junit.workingDirectory = junit.workingDirectory.replace(rootDir.absolutePath, "\$PROJECT_DIR\$")