diff options
author | Pavel Labath <pavel@labath.sk> | 2025-03-17 16:06:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-17 16:06:25 +0100 |
commit | 1b237198dc9d308c6d589e01637ec7496b48b3e0 (patch) | |
tree | a843c0d0cbde337e75fbabd9f1acfc8f6dad061e /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 83356f3b62e95b980ca48083aafa4a1b4040d4c9 (diff) | |
download | llvm-1b237198dc9d308c6d589e01637ec7496b48b3e0.zip llvm-1b237198dc9d308c6d589e01637ec7496b48b3e0.tar.gz llvm-1b237198dc9d308c6d589e01637ec7496b48b3e0.tar.bz2 |
Reapply "[lldb] Implement basic support for reverse-continue (#125242)" (again) (#128156)
This reverts commit
https://github.com/llvm/llvm-project/commit/87b7f63a117c340a6d9ca47959335fd7ef6c7ad2,
reapplying
https://github.com/llvm/llvm-project/commit/7e66cf74fb4e6a103f923e34700a7b6f20ac2a9b
with a small (and probably temporary)
change to generate more debug info to help with diagnosing buildbot
issues.
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 590024e..bf9f59c 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" |