Temporarily mute a failing test

This commit is contained in:
Georgy Bronnikov
2021-06-16 00:18:56 +03:00
parent 39e2df6916
commit f0f01db66e
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
import kotlin.*
import kotlin.collections.*
@@ -7,6 +7,7 @@ package org.jetbrains.kotlin.test.runners.ir.interpreter
import org.jetbrains.kotlin.platform.jvm.JvmPlatforms
import org.jetbrains.kotlin.test.TargetBackend
import org.jetbrains.kotlin.test.backend.BlackBoxCodegenSuppressor
import org.jetbrains.kotlin.test.backend.handlers.IrInterpreterBackendHandler
import org.jetbrains.kotlin.test.backend.ir.JvmIrBackendFacade
import org.jetbrains.kotlin.test.builders.TestConfigurationBuilder
@@ -48,6 +49,7 @@ open class AbstractIrInterpreterAfterFir2IrTest : AbstractKotlinCompilerWithTarg
useFrontendFacades(::FirFrontendFacade)
useFrontend2BackendConverters(::Fir2IrResultsConverter)
useBackendFacades(::JvmIrBackendFacade)
useAfterAnalysisCheckers(::BlackBoxCodegenSuppressor)
useBackendHandlers(::IrInterpreterBackendHandler)
enableMetaInfoHandler()