Disable JVM tests in native

This commit is contained in:
Pavel Punegov
2018-07-25 13:22:04 +03:00
committed by Pavel Punegov
parent 0c8f34a934
commit 1a7d366733
10 changed files with 10 additions and 4 deletions
@@ -129,7 +129,7 @@ fun checkIntArrayMethodCallBound(): Boolean {
val intArray = intArrayOf(1, 2, 3)
var start = 0
var sum = 0
for (i in 0..Math.min(intArray.size, 10) - 1) {
for (i in 0..kotlin.math.min(intArray.size, 10) - 1) {
sum += intArray[i]
}
if (sum != 6) return false
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: NATIVE
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME