Mute jvm ir box tests

This commit is contained in:
Mikhael Bogdanov
2018-08-02 12:20:57 +02:00
parent 34a12cb87c
commit 6c41f078a6
14 changed files with 14 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A<T> { open class A<T> {
open fun foo(t: T) = "A" open fun foo(t: T) = "A"
} }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A<T> { open class A<T> {
open fun foo(t: T) = "A" open fun foo(t: T) = "A"
} }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface A<T> { interface A<T> {
fun foo(t: T): String fun foo(t: T): String
} }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface A<T: Number> { interface A<T: Number> {
fun foo(t: T): String fun foo(t: T): String
} }
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A { open class A {
open val foo: String = "OK" open val foo: String = "OK"
} }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM // TARGET_BACKEND: JVM
// FULL_JDK // FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
class Outer { class Outer {
inner class Inner<T>(val t: T) { inner class Inner<T>(val t: T) {
fun box() = t fun box() = t
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR // IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not // TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE // IGNORE_BACKEND: JS, NATIVE
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
var global = 0 var global = 0
fun sideEffect() = global++ fun sideEffect() = global++
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM // TARGET_BACKEND: JVM
// WITH_RUNTIME // WITH_RUNTIME
// FULL_JDK // FULL_JDK
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM // TARGET_BACKEND: JVM
// WITH_RUNTIME // WITH_RUNTIME
// FULL_JDK // FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM // TARGET_BACKEND: JVM
// WITH_RUNTIME // WITH_RUNTIME
// FULL_JDK // FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface BK { interface BK {
fun foo(): String fun foo(): String
fun bar(): String fun bar(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
fun box(): String { fun box(): String {
A.Nested().nestedA() A.Nested().nestedA()
A.Nested().Inner().innerA() A.Nested().Inner().innerA()