This revision was automatically updated to reflect the committed changes. Closed by commit rGb31a1b4746c7: [LLDB] Flush stream at the end of PrintCommandOutput (authored by zequanwu).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D120961/new/ https://reviews.llvm.org/D120961 Files: lldb/source/Interpreter/CommandInterpreter.cpp Index: lldb/source/Interpreter/CommandInterpreter.cpp =================================================================== --- lldb/source/Interpreter/CommandInterpreter.cpp +++ lldb/source/Interpreter/CommandInterpreter.cpp @@ -2997,6 +2997,7 @@ if (size > 0) { stream.Printf("\n... Interrupted.\n"); } + stream.Flush(); } bool CommandInterpreter::EchoCommandNonInteractive(
Index: lldb/source/Interpreter/CommandInterpreter.cpp =================================================================== --- lldb/source/Interpreter/CommandInterpreter.cpp +++ lldb/source/Interpreter/CommandInterpreter.cpp @@ -2997,6 +2997,7 @@ if (size > 0) { stream.Printf("\n... Interrupted.\n"); } + stream.Flush(); } bool CommandInterpreter::EchoCommandNonInteractive(
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits