[FIR] Disable failing blackbox codegen tests for FIR.

This commit is contained in:
Mark Punzalan
2019-11-18 14:35:02 -08:00
committed by Mikhail Glukhikh
parent fc9ccafb84
commit 9df2f69f09
4019 changed files with 4042 additions and 22 deletions
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// IGNORE_BACKEND: NATIVE
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface Tr {
fun extra() : String = "_"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class M() {
open var b: Int = 0
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface BK {
fun x() : Int = 50
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class M() {
open var y = 500
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface BK {
fun foo(): String
fun bar(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
//inspired by kt3492
interface BK {
fun foo(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface Base {
val foo: String
fun bar(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
//inspired by kt3492
interface Base {
val foo: String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface T {
open fun baz(): String = "T.baz"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface T {
open val baz: String
get() = "T.baz"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface Z<T> {
fun test(p: T): T {
return p
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface Z<T> {
fun test(p: T): T {
return p
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Z<T, Y> {
open fun test(p: T, z: Y): T {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface Z<T> {
val value: T
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class A {
open fun foo2(): String = "OK"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class A {
open val foo: String = "OK"
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface ATrait {
open fun foo2(): String = "OK"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface A {
open val foo: String
get() = "OK"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class C(val f: () -> Unit) {
fun test() {
f()
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class X(var s: ()-> Unit)
open class C(val f: X) {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class C(s: Int) {
fun test() {
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
abstract class WaitFor {
init {
condition()
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface T1 {
fun foo() = "O"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class SuperClass(val arg: () -> String)
object obj {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class A(val array: Array<Any>)
class B : A(arrayOf("OK"))
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
// FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Base(val addr: Long, val name: String)
fun box(): String {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
abstract class Base(val s: String, vararg ints: Int)
fun foo(s: String, ints: IntArray) = object : Base(ints = *ints, s = s) {}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Foo(val value: String) {
open inner class Inner(val d: Double = -1.0, val s: String, vararg val y: Int) {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
val capture = "O"
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface M {
var backingB : Int
var b : Int
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Base() {
open fun baseFun(): String = "Base.baseFun()"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class DeeperBase {
open fun deeperBaseFun(): String = "DeeperBase.deeperBaseFun()"
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface ISomething
open class ClassWithToString {