From dfdcc0e6b34aad1574984f76488758fcaaaf6f15 Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Sat, 7 Oct 2017 23:14:33 +0300 Subject: [PATCH] sm test runner: allow handling output after testingFinished event Previously, "Process finished with exit code ..." text was skipped for test framework emitting testingFinished events --- .../sm/runner/OutputToGeneralTestEventsConverter.java | 1 - 1 file changed, 1 deletion(-) 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 ca356134e022..5dfdbaf3f5c8 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 @@ -343,7 +343,6 @@ public class OutputToGeneralTestEventsConverter implements ProcessOutputConsumer if (processor != null) { processor.onFinishTesting(); Disposer.dispose(processor); - myProcessor = null; } }