From 9bc9b064da244726db8244eef2c4e0c28a4b2ea7 Mon Sep 17 00:00:00 2001 From: "Anna.Kozlova" Date: Fri, 3 Jan 2020 11:52:35 +0100 Subject: [PATCH] test execution: keep unsupported control sequences in console (IDEA-211589) GitOrigin-RevId: dea0e0720a6d602171a1fcbe606da50ebbfb0bd6 --- .../sm/runner/OutputToGeneralTestEventsConverter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/OutputToGeneralTestEventsConverter.java b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/OutputToGeneralTestEventsConverter.java index 42d2461b0476..d716aec2e817 100644 --- a/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/OutputToGeneralTestEventsConverter.java +++ b/platform/smRunner/src/com/intellij/execution/testframework/sm/runner/OutputToGeneralTestEventsConverter.java @@ -631,6 +631,7 @@ public class OutputToGeneralTestEventsConverter implements ProcessOutputConsumer } else { GeneralTestEventsProcessor.logProblem(LOG, "Unexpected service message:" + name, myTestFrameworkName); + fireOnUncapturedOutput(msg.asString() + "\n", ProcessOutputTypes.STDOUT); } }