Mute failing tests for IrInterpreterAfterPsi2IrTestGenerated

These tests are not passing because of the way how test system works.
To works properly interpreter needs source files. For now they are
passed as additional source files, but this method is not working
for old frontend, some conflicts appear in symbol table. Best way to
fix it is to wait until ir serialization.
This commit is contained in:
Ivan Kylchik
2021-06-24 15:22:12 +03:00
committed by TeamCityServer
parent 295638b26e
commit fe74dd2689
6 changed files with 5 additions and 0 deletions
Binary file not shown.
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface Base
@CompileTimeCalculation
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
package test
import kotlin.reflect.KFunction
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
package test
import kotlin.reflect.KFunction
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
@CompileTimeCalculation
fun loop(toInc: Int, start: Int, end: Int): Int {
var result = toInc
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
@CompileTimeCalculation
fun varargSum(quantityToSum: Int, vararg num: Int): Int {
var sum = 0