From f73897fceaf77c787c4a8e684d67dfce614a7ce1 Mon Sep 17 00:00:00 2001 From: Marat Akhin Date: Fri, 23 Sep 2022 10:17:50 +0200 Subject: [PATCH] [K/N][KLIB][Tests]: mark klib binary compatibility tests as klib-abi This is to avoid the need to change all our TC configurations to include another test task run --- .../blackboxtest/AbstractNativeKlibBinaryCompatibilityTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/AbstractNativeKlibBinaryCompatibilityTest.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/AbstractNativeKlibBinaryCompatibilityTest.kt index f3373a00e83..d74a063fc44 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/AbstractNativeKlibBinaryCompatibilityTest.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/AbstractNativeKlibBinaryCompatibilityTest.kt @@ -28,6 +28,7 @@ import kotlin.math.max import org.jetbrains.kotlin.compatibility.binary.TestFile as BinaryCompatibilityTestFile import org.jetbrains.kotlin.compatibility.binary.TestModule as BinaryCompatibilityTestModule +@Tag("klib-abi") @Tag("klib-binary-compatibility") abstract class AbstractNativeKlibBinaryCompatibilityTest : AbstractNativeSimpleTest() {