From 0b3ae50f31fe1f9f61e69f0d6cc98708c9ffea1d Mon Sep 17 00:00:00 2001 From: Vladimir Ilmov Date: Sat, 30 May 2020 17:09:52 +0200 Subject: [PATCH] Revert "(CoroutineDebugger) Windows test fix for kotlinx-coroutines-core" This reverts commit faaf40dbe5c9850c972176c55688c807417e51d9. --- .../kotlin/idea/debugger/test/util/KotlinOutputChecker.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/util/KotlinOutputChecker.kt b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/util/KotlinOutputChecker.kt index 7f04d915f6e..02f126a0785 100644 --- a/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/util/KotlinOutputChecker.kt +++ b/idea/jvm-debugger/jvm-debugger-test/test/org/jetbrains/kotlin/idea/debugger/test/util/KotlinOutputChecker.kt @@ -110,9 +110,7 @@ internal class KotlinOutputChecker( lines[disconnectedIndex] = DISCONNECT_PREFIX return lines - .map { it.replace("FRAME:(.*):\\d+".toRegex(), "$1:!LINE_NUMBER!") } - // kotlinx-coroutines-core temporary fix for windows agents - .filter { it == "Failed to install signal handler: java.lang.IllegalArgumentException: Unknown signal: TRAP" } + .map { it.replace("FRAME:(.*):\\d+".toRegex(), "$1:!LINE_NUMBER!") } .filter { !(it.matches(JDI_BUG_OUTPUT_PATTERN_1) || it.matches(JDI_BUG_OUTPUT_PATTERN_2)) } .joinToString("\n") }