[JVM_IR] Add tests of Compose-like default argument handling.

This commit is contained in:
Mads Ager
2020-11-30 16:41:07 +01:00
committed by Alexander Udalov
parent a7efa5c98b
commit 83588e9f22
6 changed files with 397 additions and 2 deletions
@@ -251,8 +251,6 @@ fun main(args: Array<String>) {
model("ir/sourceRanges")
}
testClass<AbstractBytecodeListingTest> {
model("codegen/bytecodeListing", targetBackend = TargetBackend.JVM)
}
@@ -462,6 +460,10 @@ fun main(args: Array<String>) {
model("lexer/kotlin")
}
testClass<AbstractComposeLikeIrBlackBoxCodegenTest> {
model("codegen/composeLike", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrBlackBoxCodegenTest> {
model("codegen/box", targetBackend = TargetBackend.JVM_IR, excludeDirs = listOf("oldLanguageVersions"))
}