From 12e40e7b924ae4c85a2e308ca962556b10cc09b6 Mon Sep 17 00:00:00 2001 From: Nikita Nazarov Date: Tue, 5 Jul 2022 06:42:27 +0300 Subject: [PATCH] Set android ignore directives for debug mode tests --- .../codegen/box/coroutines/varSpilling/debugMode/backEdge.kt | 1 + .../testData/codegen/box/coroutines/varSpilling/debugMode/if.kt | 1 + .../codegen/box/coroutines/varSpilling/debugMode/nullCleanup.kt | 1 + .../codegen/box/coroutines/varSpilling/debugMode/nullNotSpill.kt | 1 + .../codegen/box/coroutines/varSpilling/debugMode/simple.kt | 1 + .../codegen/box/coroutines/varSpilling/debugMode/twoRefs.kt | 1 + .../box/coroutines/varSpilling/debugMode/unusedParamNotSpill.kt | 1 + .../codegen/box/coroutines/varSpilling/debugMode/when.kt | 1 + 8 files changed, 8 insertions(+) diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/backEdge.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/backEdge.kt index 38057f1fa95..6d2d572cb5c 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/backEdge.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/backEdge.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/if.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/if.kt index 0df3640d240..f5b6c0c7caa 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/if.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/if.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullCleanup.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullCleanup.kt index c170169c100..41a8a81090d 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullCleanup.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullCleanup.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullNotSpill.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullNotSpill.kt index e75a7482605..a4bb4208dbc 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullNotSpill.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/nullNotSpill.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/simple.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/simple.kt index ece156fbaf8..ff83cde5c2a 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/simple.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/simple.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/twoRefs.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/twoRefs.kt index 0709e752bf0..ea5689f5fd4 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/twoRefs.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/twoRefs.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/unusedParamNotSpill.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/unusedParamNotSpill.kt index 8648f7469ca..8d172770279 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/unusedParamNotSpill.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/unusedParamNotSpill.kt @@ -1,6 +1,7 @@ // WITH_STDLIB // FULL_JDK // TARGET_BACKEND: JVM_IR +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/when.kt b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/when.kt index ffcd6692b0e..b1fa6acaade 100644 --- a/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/when.kt +++ b/compiler/testData/codegen/box/coroutines/varSpilling/debugMode/when.kt @@ -2,6 +2,7 @@ // FULL_JDK // TARGET_BACKEND: JVM_IR // IGNORE_BACKEND: JVM +// IGNORE_BACKEND: ANDROID import kotlin.coroutines.* import kotlin.coroutines.intrinsics.*