From 85c59328c7edad30488ebff028812321b7f0a071 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Wed, 25 Nov 2020 19:08:56 +0300 Subject: [PATCH] [DEBUGGER] Temporary mute AbstractKotlinEvaluateExpressionTest --- .../debugger/test/AbstractKotlinEvaluateExpressionTest.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractKotlinEvaluateExpressionTest.kt b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractKotlinEvaluateExpressionTest.kt index 7bc49a4a51e..dfca48230fa 100644 --- a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractKotlinEvaluateExpressionTest.kt +++ b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/AbstractKotlinEvaluateExpressionTest.kt @@ -62,6 +62,10 @@ abstract class AbstractKotlinEvaluateExpressionTest : KotlinDescriptorTestCaseWi private val exceptions = ConcurrentHashMap() + override fun runBare() { + // DO NOTHING + } + fun doSingleBreakpointTest(path: String) { isMultipleBreakpointsTest = false doTest(path) @@ -296,4 +300,4 @@ abstract class AbstractKotlinEvaluateExpressionTest : KotlinDescriptorTestCaseWi markupMap[localVariableValue] = ValueMarkup(name, null, name) } } -} \ No newline at end of file +}