[FIR] Support FIR version of all-open plugin

This commit is contained in:
Dmitriy Novozhilov
2022-05-13 16:40:49 +03:00
committed by teamcity
parent 4003ca0691
commit 22ebea8174
18 changed files with 334 additions and 18 deletions
@@ -6,6 +6,7 @@
package org.jetbrains.kotlin.generators.tests
import org.jetbrains.kotlin.allopen.AbstractBytecodeListingTestForAllOpen
import org.jetbrains.kotlin.allopen.AbstractFirBytecodeListingTestForAllOpen
import org.jetbrains.kotlin.allopen.AbstractIrBytecodeListingTestForAllOpen
import org.jetbrains.kotlin.android.parcel.AbstractParcelBoxTest
import org.jetbrains.kotlin.android.parcel.AbstractParcelBytecodeListingTest
@@ -408,6 +409,9 @@ fun main(args: Array<String>) {
testClass<AbstractIrBytecodeListingTestForAllOpen> {
model("bytecodeListing", excludedPattern = excludedFirTestdataPattern)
}
testClass<AbstractFirBytecodeListingTestForAllOpen> {
model("bytecodeListing", excludedPattern = excludedFirTestdataPattern)
}
}
}