Unmute ir-tests after prev commit

This commit is contained in:
Mikhael Bogdanov
2018-08-08 12:10:37 +03:00
parent da34299064
commit 06b16a6459
136 changed files with 1 additions and 136 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
interface A<T> {
fun foo(t: T): String
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
interface A<T: Number> {
fun foo(t: T): String
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
interface A<T, U> {
fun foo(t: T, u: U): String
}
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// Won't ever work with JS backend.
// TODO: Consider rewriting this test without using threads, since the issue is not about threads at all.
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: NATIVE
public object SomeClass {
private val work = object : Runnable {
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
interface A {
fun foo(): Int
}
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
package foo
interface B {
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun box() : String {
val o = object {
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
interface A {
fun foo(): Int
}
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun test1(str: String): String {
data class A(val x: Int) {
fun foo() = str
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun testFun1(str: String): String {
val capture = str
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
-1
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
class B () {}
open class A(val b : B) {