This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 0ce0a2503 Fix typos. new 1c0565ba7 Add EchoCommentCommands to CommandInterpreterRunOptions in ad [...] new 86db6ccbe TestMultilineExpr: validate evaluation for expressions that s [...]
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/API/SBCommandInterpreter.h | 4 + include/lldb/Interpreter/CommandInterpreter.h | 63 +++++++++---- lit/Expr/TestMultilineExpr.test | 9 ++ lit/Settings/Inputs/EchoCommandsAll.out | 6 ++ lit/Settings/Inputs/EchoCommandsNoComments.out | 5 + lit/Settings/Inputs/EchoCommandsNone.out | 4 + lit/Settings/Inputs/EchoCommandsQuiet.out | 2 + lit/Settings/Inputs/EchoCommandsTest.in | 2 + lit/Settings/TestEchoCommands.test | 4 + lit/lit-lldb-init | 1 + .../test/expression_command/multiline/Makefile | 5 - .../multiline/TestMultilineExpressions.py | 90 ------------------ .../test/expression_command/multiline/main.c | 6 -- source/API/SBCommandInterpreter.cpp | 8 ++ source/Commands/CommandObjectCommands.cpp | 11 ++- source/Interpreter/CommandInterpreter.cpp | 101 ++++++++++++++++++--- 16 files changed, 183 insertions(+), 138 deletions(-) create mode 100644 lit/Expr/TestMultilineExpr.test create mode 100644 lit/Settings/Inputs/EchoCommandsAll.out create mode 100644 lit/Settings/Inputs/EchoCommandsNoComments.out create mode 100644 lit/Settings/Inputs/EchoCommandsNone.out create mode 100644 lit/Settings/Inputs/EchoCommandsQuiet.out create mode 100644 lit/Settings/Inputs/EchoCommandsTest.in create mode 100644 lit/Settings/TestEchoCommands.test delete mode 100644 packages/Python/lldbsuite/test/expression_command/multiline/Makefile delete mode 100644 packages/Python/lldbsuite/test/expression_command/multiline/Tes [...] delete mode 100644 packages/Python/lldbsuite/test/expression_command/multiline/main.c