diff options
author | David Spickett <david.spickett@linaro.org> | 2025-01-31 15:56:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-31 15:56:33 +0000 |
commit | 7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b (patch) | |
tree | 3f36172b709672dcfe7558bbdfd10b6c795d560f /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 0d63a3d7572039095fabeadc7f1370da7dfa0d1b (diff) | |
download | llvm-7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b.zip llvm-7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b.tar.gz llvm-7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b.tar.bz2 |
Reland "[lldb] Implement basic support for reverse-continue" (#125242)
This reverts commit a774de807e56c1147d4630bfec3110c11d41776e.
This is the same changes as last time, plus:
* We load the binary into the target object so that on Windows, we can
resolve the locations of the functions.
* We now assert that each required breakpoint has at least 1 location,
to prevent an issue like that in the future.
* We are less strict about the unsupported error message, because it
prints "error: windows" on Windows instead of "error: gdb-remote".
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 81b2863..b0d2a27 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -143,6 +143,8 @@ STOPPED_DUE_TO_STEP_IN = "Process state is stopped due to step in" STOPPED_DUE_TO_WATCHPOINT = "Process should be stopped due to watchpoint" +STOPPED_DUE_TO_HISTORY_BOUNDARY = "Process should be stopped due to history boundary" + DATA_TYPES_DISPLAYED_CORRECTLY = "Data type(s) displayed correctly" VALID_BREAKPOINT = "Got a valid breakpoint" |