Skip to content

Commit a372c6f

Browse files
committed
Disable test failures for FirLightTreeHeaderModeCodegenTest.
^KT-78422
1 parent d945b73 commit a372c6f

File tree

53 files changed

+94
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+94
-1
lines changed

compiler/testData/codegen/box/coroutines/featureIntersection/destructuringInLambdas.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// LANGUAGE: +NameBasedDestructuring +DeprecateNameMismatchInShortDestructuringWithParentheses +EnableNameBasedDestructuringShortForm
22
// WITH_STDLIB
33
// WITH_COROUTINES
4+
// IGNORE_HEADER_MODE: JVM_IR
5+
// Reason: KT-82376
46
import helpers.*
57
import kotlin.coroutines.*
68
import kotlin.coroutines.intrinsics.*

compiler/testData/codegen/box/coroutines/featureIntersection/suspendDestructuringInLambdas.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// LANGUAGE: +NameBasedDestructuring +DeprecateNameMismatchInShortDestructuringWithParentheses +EnableNameBasedDestructuringShortForm
22
// WITH_STDLIB
33
// WITH_COROUTINES
4+
// IGNORE_HEADER_MODE: JVM_IR
5+
// Reason: KT-82376
46
import helpers.*
57
import kotlin.coroutines.*
68
import kotlin.coroutines.intrinsics.*

compiler/testData/codegen/box/enum/nameClashWithCompanion.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// TARGET_BACKEND: JVM
22
// IGNORE_BACKEND_K2: JVM_IR, JS_IR, JS_IR_ES6
3+
// IGNORE_HEADER_MODE: JVM_IR
34
// FIR status: don't support legacy feature (see https://youtrack.jetbrains.com/issue/KT-37591). UNRESOLVED_REFERENCE at '+'
45
// WITH_STDLIB
56
// MODULE: lib

compiler/testData/codegen/box/extensionClasses/simple.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// TARGET_BACKEND: JVM_IR
33
// IGNORE_BACKEND_K2: ANY
4+
// IGNORE_HEADER_MODE: JVM_IR
45

56
class A {
67
val ok = "OK"

compiler/testData/codegen/box/extensionClasses/typealiasForContextualClass.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// TARGET_BACKEND: JVM_IR
33
// IGNORE_BACKEND_K2: ANY
4+
// IGNORE_HEADER_MODE: JVM_IR
45

56
class A {
67
val ok = "OK"

compiler/testData/codegen/box/extensionFunctions/contextReceivers/contextualInlineCall.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// LANGUAGE: +ContextReceivers
22
// IGNORE_BACKEND_K2: ANY
3+
// IGNORE_HEADER_MODE: JVM_IR
34
// TARGET_BACKEND: JVM_IR
45
// KT-51271
56

compiler/testData/codegen/box/extensionFunctions/contextReceivers/fromKEEP/compareTo.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// IGNORE_BACKEND_K2: ANY
33
// TARGET_BACKEND: JVM_IR
4+
// IGNORE_HEADER_MODE: JVM_IR
45

56
data class Pair<A, B>(val first: A, val second: B)
67

compiler/testData/codegen/box/extensionFunctions/contextReceivers/fromKEEP/decimateEveryEvenThird.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// IGNORE_BACKEND_K2: ANY
33
// TARGET_BACKEND: JVM_IR
4+
// IGNORE_HEADER_MODE: JVM_IR
45
// WITH_STDLIB
56

67
fun List<Int>.decimateEveryEvenThird() = sequence {

compiler/testData/codegen/box/extensionFunctions/contextReceivers/fromKEEP/dp.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// IGNORE_BACKEND_K2: ANY
33
// TARGET_BACKEND: JVM_IR
4+
// IGNORE_HEADER_MODE: JVM_IR
45
// WITH_STDLIB
56

67
class View {

compiler/testData/codegen/box/extensionFunctions/contextReceivers/iteratorOperator.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// LANGUAGE: +ContextReceivers
22
// TARGET_BACKEND: JVM_IR
33
// IGNORE_BACKEND_K2: ANY
4+
// IGNORE_HEADER_MODE: JVM_IR
45
// WITH_STDLIB
56

67
data class Counter(var i: Int = 0)

0 commit comments

Comments
 (0)