Modularized tests. Force noStdlib and noReflect in full-pipeline tests

In fact, test-data classpath contains references to stdlib and reflect
already
In order to avoid duplicating libraries on classpath set flags
accordingly

^KT-56075
This commit is contained in:
Simon Ogorodnik
2023-01-24 18:30:20 +01:00
committed by Space Team
parent 317b9d28e0
commit 1bb5635570
2 changed files with 4 additions and 0 deletions
@@ -19,6 +19,8 @@ class FE1FullPipelineModularizedTest : AbstractFullPipelineModularizedTest() {
"org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI"
)
args.multiPlatform = true
args.noStdlib = true
args.noReflect = true
}
fun testTotalKotlin() {
@@ -29,6 +29,8 @@ class FullPipelineModularizedTest : AbstractFullPipelineModularizedTest() {
"org.jetbrains.kotlin.ir.ObsoleteDescriptorBasedAPI"
)
args.renderInternalDiagnosticNames = true
args.noStdlib = true
args.noReflect = true
}
fun testTotalKotlin() {