[Lldb-commits] [lldb] 1d0b285 - [lldb] Relax check for breakpoint site in Unwind/windows-unaligned-x86_64.test (#115318)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 18 12:14:59 PST 2024
Author: Stefan Gränitz
Date: 2024-11-18T21:14:55+01:00
New Revision: 1d0b2851224b1ef97c49faac2c666535f1997363
URL: https://github.com/llvm/llvm-project/commit/1d0b2851224b1ef97c49faac2c666535f1997363
DIFF: https://github.com/llvm/llvm-project/commit/1d0b2851224b1ef97c49faac2c666535f1997363.diff
LOG: [lldb] Relax check for breakpoint site in Unwind/windows-unaligned-x86_64.test (#115318)
This test checks the thread backtrace for entries of intermediate frames
that aren't aligned to 16 bytes. In order to do that, it sets a single
breakpoint and makes sure we stop there. It seems sufficient, however,
to check that we hit the breakpoint itself and not which particular
site.
Added:
Modified:
lldb/test/Shell/Unwind/windows-unaligned-x86_64.test
Removed:
################################################################################
diff --git a/lldb/test/Shell/Unwind/windows-unaligned-x86_64.test b/lldb/test/Shell/Unwind/windows-unaligned-x86_64.test
index 94f1c011ebd2a6..0356960424328b 100644
--- a/lldb/test/Shell/Unwind/windows-unaligned-x86_64.test
+++ b/lldb/test/Shell/Unwind/windows-unaligned-x86_64.test
@@ -17,7 +17,7 @@ breakpoint set -n func
# CHECK: Breakpoint 1: where = {{.*}}`{{(::)?}}func
process launch
-# CHECK: stop reason = breakpoint 1.1
+# CHECK: stop reason = breakpoint 1
thread backtrace
# CHECK: frame #0: {{.*}}`{{(::)?}}func
More information about the lldb-commits
mailing list