diff --git a/java/testFramework/src/com/intellij/debugger/impl/OutputChecker.java b/java/testFramework/src/com/intellij/debugger/impl/OutputChecker.java index 0328ef8d534a..b6812781278f 100644 --- a/java/testFramework/src/com/intellij/debugger/impl/OutputChecker.java +++ b/java/testFramework/src/com/intellij/debugger/impl/OutputChecker.java @@ -264,6 +264,8 @@ public class OutputChecker { result = result.replace("-Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8 ", ""); result = result.replace("-Dkotlinx.coroutines.debug.enable.creation.stack.trace=false ", ""); result = result.replace("-Ddebugger.agent.enable.coroutines=true ", ""); + result = result.replace("-Dkotlinx.coroutines.debug.enable.flows.stack.trace=true ", ""); + result = result.replace("-Dkotlinx.coroutines.debug.enable.mutable.state.flows.stack.trace=true ", ""); result = result.replace("-Ddebugger.agent.support.throwable=false ", ""); result = result.replaceAll("\\((.*):\\d+\\)", "($1:!LINE_NUMBER!)"); diff --git a/platform/util/resources/misc/registry.properties b/platform/util/resources/misc/registry.properties index d2d903b7d23d..f00c6bcfac54 100644 --- a/platform/util/resources/misc/registry.properties +++ b/platform/util/resources/misc/registry.properties @@ -584,9 +584,9 @@ debugger.capture.points.annotations=false debugger.collection.watchpoints.enabled=false debugger.async.stacks.coroutines=true debugger.async.stacks.coroutines.description=Enable async stack traces for coroutines -debugger.async.stacks.flows=false +debugger.async.stacks.flows=true debugger.async.stacks.flows.description=Enable async stack traces for MutableSharedFlow -debugger.async.stacks.state.flows=false +debugger.async.stacks.state.flows=true debugger.async.stacks.state.flows.description=Enable async stack traces for MutableStateFlow debugger.async.stacks.max.depth=500 debugger.async.stacks.max.depth.description=Maximum depth of captured async stacks