[test] Remove TARGET_BACKEND: JVM_IR for non JVM-specific irText tests

If they fail on other backends, use the IGNORE_BACKEND directive instead
This commit is contained in:
Sergej Jaskiewicz
2023-04-11 17:46:04 +02:00
committed by Space Team
parent a224feefd2
commit 973adb6a38
21 changed files with 376 additions and 15 deletions
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,4 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
fun withContext(f: context(String) () -> String) = f("OK")
@@ -1,15 +1,24 @@
// CHECK JVM_IR:
// Mangled name: #box(){}kotlin.String
// Public signature: /box|-9347091776561469[0]
// CHECK JS_IR NATIVE:
// Mangled name: #box(){}
// Public signature: /box|2173511048851971368[0]
fun box(): String
// CHECK JVM_IR:
// Mangled name: #callWithContext(kotlin.Function1<kotlin.String,kotlin.String>){}kotlin.String
// Public signature: /callWithContext|2869415620415030876[0]
// CHECK JS_IR NATIVE:
// Mangled name: #callWithContext(kotlin.Function1<kotlin.String,kotlin.String>){}
// Public signature: /callWithContext|-2175578939070447459[0]
fun callWithContext(f: Function1<String, String>): String
// CHECK JVM_IR:
// Mangled name: #withContext(kotlin.Function1<kotlin.String,kotlin.String>){}kotlin.String
// Public signature: /withContext|-1533357735492795771[0]
// CHECK JS_IR NATIVE:
// Mangled name: #withContext(kotlin.Function1<kotlin.String,kotlin.String>){}
// Public signature: /withContext|3644059802172459381[0]
fun withContext(f: Function1<String, String>): String
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_STDLIB
// MUTE_SIGNATURE_COMPARISON_K2: ANY
@@ -1,6 +1,6 @@
// FIR_IDENTICAL
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57429, KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_STDLIB
// MUTE_SIGNATURE_COMPARISON_K2: ANY
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_STDLIB
// MUTE_SIGNATURE_COMPARISON_K2: ANY
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// WITH_STDLIB
// MUTE_SIGNATURE_COMPARISON_K2: ANY
@@ -1,6 +1,6 @@
// !LANGUAGE: +ContextReceivers
// FIR_IDENTICAL
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_K1: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435
@@ -1,5 +1,4 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
class C {
val result = "OK"
@@ -9,6 +9,9 @@ class C {
// CHECK JVM_IR:
// Mangled name: C#<get-result>(){}kotlin.String
// Public signature: /C.result.<get-result>|8441547134620975366[0]
// CHECK JS_IR NATIVE:
// Mangled name: C#<get-result>(){}
// Public signature: /C.result.<get-result>|7945192536455394063[0]
get
// CHECK:
@@ -21,10 +24,16 @@ class C {
// CHECK JVM_IR:
// Mangled name: #box(){}kotlin.String
// Public signature: /box|-9347091776561469[0]
// CHECK JS_IR NATIVE:
// Mangled name: #box(){}
// Public signature: /box|2173511048851971368[0]
fun box(): String
// CHECK JVM_IR:
// Mangled name: #contextual(kotlin.Function1<C,kotlin.String>){}kotlin.String
// Public signature: /contextual|-248785556334643583[0]
// CHECK JS_IR NATIVE:
// Mangled name: #contextual(kotlin.Function1<C,kotlin.String>){}
// Public signature: /contextual|-8388542031730591420[0]
fun contextual(f: Function1<C, String>): String
@@ -1,5 +1,5 @@
// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57435