[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
fun box(): String {
val aByte: Array<Byte> = arrayOf<Byte>(1)
val bByte: ByteArray = byteArrayOf(1)
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
public fun box() : String {
var i : Int?
i = 10
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
import kotlin.test.*
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
object A {
var x = 0
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
class AByte(var value: Byte) {
operator fun get(i: Int) = value
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
class A<T>(var value: T) {
operator fun get(i: Int) = value
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
object ExtProvider {
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
fun box(): String {
var aByte: Byte? = 0
var bByte: Byte = 0
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
public fun box() : String {
var i : Int?
i = 10
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Base
class Derived: Base()
operator fun Derived.inc(): Derived { return Derived() }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
public fun box() : String {
var i : Short?
i = 10
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
public fun box() : String {
var i : Int?
i = 10
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
open class Base
class Derived: Base()
operator fun Derived.inc(): Derived { return Derived() }
@@ -1,3 +1,4 @@
// IGNORE_BACKEND_FIR: JVM_IR
public fun box() : String {
var i : Int?
i = 10