Mute failed jvm ir tests

This commit is contained in:
Mikhael Bogdanov
2018-06-28 11:45:21 +02:00
parent a10c06eb4d
commit e149cbe852
1890 changed files with 1890 additions and 0 deletions
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface T {
fun foo(): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface IFoo {
fun foo(): String
}
@@ -1,4 +1,5 @@
// !LANGUAGE: +ProperVisibilityForCompanionObjectInstanceField
// IGNORE_BACKEND: JVM_IR
class Outer {
private companion object {
@@ -1,4 +1,5 @@
// !LANGUAGE: +ProperVisibilityForCompanionObjectInstanceField
// IGNORE_BACKEND: JVM_IR
class Outer {
private companion object {
@@ -1,4 +1,5 @@
// !LANGUAGE: +ProperVisibilityForCompanionObjectInstanceField
// IGNORE_BACKEND: JVM_IR
class Outer {
private companion object {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
var log = ""
class A(p: String) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
var log = ""
class A(p: String) {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
public abstract class FList<T>() {
public abstract val head: T
@@ -1,4 +1,5 @@
// !LANGUAGE: +NestedClassesInAnnotations
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_RUNTIME
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
class A(val value: String)
fun A.test(): String {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
public object SomeObject {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
fun box() : String {
var a = 1
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A {
fun foo() = "OK"
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class X(private val n: String) {
fun foo(): String {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface N
open class Base(n: N)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
object O {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
class A {
val x: Any get() {
return object : Inner() {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
fun box(): String {
var boo = "OK"
var foo = object {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
object A {
val a = "OK"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
class C(x: Int, val y: Int) {
fun initChild(x0: Int): Any {
var x = x0
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
package p
private class C(val y: Int) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
public inline fun <T> T.with(f: T.() -> Unit): T {
this.f()
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
class A(val result: String)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
interface T
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A(open val v: String)
fun A.a(newv: String) = object: A("fail") {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface IFn {
operator fun invoke(): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
class Test {
companion object {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
abstract class Base(val fn: () -> String)
class Host {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface IFn {
operator fun invoke(): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
interface Test {
companion object {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
abstract class Base(val fn: () -> String)
interface Host {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface IFn {
operator fun invoke(): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
object Test {
fun ok() = "OK"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
abstract class Base(val fn: () -> String)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
abstract class Base(val fn: () -> String)
object Test : Base({ Test.ok() }) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A(open val v: String) {
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// KT-5869