[minor] fix accidental addition of FirScriptCodegenTestGenerated
This commit is contained in:
-18
@@ -1,18 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
||||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package org.jetbrains.kotlin.codegen.ir
|
|
||||||
|
|
||||||
import org.jetbrains.kotlin.config.CommonConfigurationKeys
|
|
||||||
import org.jetbrains.kotlin.config.CompilerConfiguration
|
|
||||||
import org.jetbrains.kotlin.config.JVMConfigurationKeys
|
|
||||||
|
|
||||||
abstract class AbstractFirScriptCodegenTest : AbstractIrScriptCodegenTest() {
|
|
||||||
override fun updateConfiguration(configuration: CompilerConfiguration) {
|
|
||||||
super.updateConfiguration(configuration)
|
|
||||||
configuration.put(CommonConfigurationKeys.USE_FIR, true)
|
|
||||||
configuration.put(JVMConfigurationKeys.IR, true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -541,10 +541,6 @@ fun main(args: Array<String>) {
|
|||||||
model("codegen/box", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
|
model("codegen/box", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
|
||||||
}
|
}
|
||||||
|
|
||||||
testClass<AbstractFirScriptCodegenTest> {
|
|
||||||
model("codegen/script", extension = "kts", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
|
|
||||||
}
|
|
||||||
|
|
||||||
testClass<AbstractFirBlackBoxInlineCodegenTest> {
|
testClass<AbstractFirBlackBoxInlineCodegenTest> {
|
||||||
model("codegen/boxInline", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
|
model("codegen/boxInline", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user