[FIR TEST] Temporary ignore overrideDefaultArgument test (KT-38416)

This test enters an infinite loop and can't finish
This commit is contained in:
Mikhail Glukhikh
2020-04-20 11:53:25 +03:00
parent fe02c2bab3
commit 4bb6410ce3
2 changed files with 11 additions and 1 deletions
@@ -1,7 +1,8 @@
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
// WITH_COROUTINES
// COMMON_COROUTINES_TEST
// TODO (SPECIAL IGNORE_BACKEND_FIR): this test isn't run in FIR mode at all due to infinite loop
import helpers.*
import COROUTINES_PACKAGE.*
import COROUTINES_PACKAGE.intrinsics.*
@@ -14,4 +14,13 @@ abstract class AbstractFirBlackBoxCodegenTest : AbstractIrBlackBoxCodegenTest()
configuration.put(CommonConfigurationKeys.USE_FIR, true)
configuration.put(JVMConfigurationKeys.IR, true)
}
override fun doTest(filePath: String) {
if (filePath.endsWith("overrideDefaultArgument.kt")) {
// TODO: made to prevent infinite loop in the particular test
// Remove me when fixed
return
}
super.doTest(filePath)
}
}