From 71f2a2df8e56119838dbe5f83a0b7f950a8a4a07 Mon Sep 17 00:00:00 2001 From: Ivan Kylchik Date: Mon, 25 Dec 2023 11:44:59 +0100 Subject: [PATCH] [Tests] Drop `JVM_WITH_OLD_EVALUATOR` and `JVM_WITH_IR_EVALUATOR` targets These targets were used in plugin, but not anymore. --- .../tests/org/jetbrains/kotlin/test/TargetBackend.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/test-infrastructure-utils/tests/org/jetbrains/kotlin/test/TargetBackend.kt b/compiler/test-infrastructure-utils/tests/org/jetbrains/kotlin/test/TargetBackend.kt index bd4f9cc0faa..b0d24426485 100644 --- a/compiler/test-infrastructure-utils/tests/org/jetbrains/kotlin/test/TargetBackend.kt +++ b/compiler/test-infrastructure-utils/tests/org/jetbrains/kotlin/test/TargetBackend.kt @@ -23,9 +23,7 @@ enum class TargetBackend( ANDROID(false, JVM), ANDROID_IR(true, JVM_IR), NATIVE(true), - JVM_WITH_OLD_EVALUATOR(false), JVM_IR_WITH_OLD_EVALUATOR(true), - JVM_WITH_IR_EVALUATOR(false), JVM_IR_WITH_IR_EVALUATOR(true); val compatibleWith get() = compatibleWithTargetBackend ?: ANY