FIR: Do not verify descriptors consistency for FIR-based IR functions

This commit is contained in:
Denis.Zharkov
2022-03-28 18:45:39 +03:00
committed by teamcity
parent 2a6700e5d5
commit 55159eba45
3 changed files with 11 additions and 3 deletions
@@ -140,7 +140,7 @@ abstract class AbstractIrTextTestCase : AbstractIrGeneratorTestCase() {
}
private fun verify(irFile: IrFile) {
IrVerifier(JUnit4Assertions).verifyWithAssert(irFile)
IrVerifier(JUnit4Assertions, isFir = false).verifyWithAssert(irFile)
}
internal class Expectations(val regexps: List<RegexpInText>, val irTreeFileLabels: List<IrTreeFileLabel>)