From 54d882ce89a606851a90abcfb071d90168823545 Mon Sep 17 00:00:00 2001 From: sergeych Date: Thu, 29 Jan 2026 02:35:49 +0300 Subject: [PATCH] Enable CmdVm, map literal, and jvm misc tests --- lynglib/src/commonTest/kotlin/CmdVmTest.kt | 1 - lynglib/src/commonTest/kotlin/MapLiteralTest.kt | 1 - lynglib/src/jvmTest/kotlin/OtherTests.kt | 1 - lynglib/src/jvmTest/kotlin/ThrowSourcePosJvmTest.kt | 1 - 4 files changed, 4 deletions(-) diff --git a/lynglib/src/commonTest/kotlin/CmdVmTest.kt b/lynglib/src/commonTest/kotlin/CmdVmTest.kt index 135b0d1..ef9a933 100644 --- a/lynglib/src/commonTest/kotlin/CmdVmTest.kt +++ b/lynglib/src/commonTest/kotlin/CmdVmTest.kt @@ -46,7 +46,6 @@ import kotlin.test.Ignore import kotlin.test.Test import kotlin.test.assertEquals -@Ignore("TODO(bytecode-only): uses fallback") class CmdVmTest { @Test fun addsIntConstants() = kotlinx.coroutines.test.runTest { diff --git a/lynglib/src/commonTest/kotlin/MapLiteralTest.kt b/lynglib/src/commonTest/kotlin/MapLiteralTest.kt index 508f2f1..d0bc638 100644 --- a/lynglib/src/commonTest/kotlin/MapLiteralTest.kt +++ b/lynglib/src/commonTest/kotlin/MapLiteralTest.kt @@ -28,7 +28,6 @@ import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.assertFailsWith -@Ignore("TODO(bytecode-only): uses fallback") class MapLiteralTest { @Test diff --git a/lynglib/src/jvmTest/kotlin/OtherTests.kt b/lynglib/src/jvmTest/kotlin/OtherTests.kt index 6c3254b..c75cb2f 100644 --- a/lynglib/src/jvmTest/kotlin/OtherTests.kt +++ b/lynglib/src/jvmTest/kotlin/OtherTests.kt @@ -28,7 +28,6 @@ import kotlin.test.Ignore import kotlin.test.Test import kotlin.test.assertNotEquals -@Ignore("TODO(bytecode-only): uses fallback") class OtherTests { @Test fun testImports3() = runBlocking { diff --git a/lynglib/src/jvmTest/kotlin/ThrowSourcePosJvmTest.kt b/lynglib/src/jvmTest/kotlin/ThrowSourcePosJvmTest.kt index 6910935..2ac0dfc 100644 --- a/lynglib/src/jvmTest/kotlin/ThrowSourcePosJvmTest.kt +++ b/lynglib/src/jvmTest/kotlin/ThrowSourcePosJvmTest.kt @@ -10,7 +10,6 @@ import kotlin.test.Test import kotlin.test.assertEquals import kotlin.test.fail -@Ignore("TODO(bytecode-only): uses fallback") class ThrowSourcePosJvmTest { private fun assertThrowLine(code: String, expectedLine: Int) {