[Lldb-commits] [lldb] b38ed00 - [LLDB][PDB] Relax check for resolving breakpoint (#169932)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 28 09:15:03 PST 2025
Author: nerix
Date: 2025-11-28T18:14:59+01:00
New Revision: b38ed00495002f4df8b29527fb1cf47317c39d36
URL: https://github.com/llvm/llvm-project/commit/b38ed00495002f4df8b29527fb1cf47317c39d36
DIFF: https://github.com/llvm/llvm-project/commit/b38ed00495002f4df8b29527fb1cf47317c39d36.diff
LOG: [LLDB][PDB] Relax check for resolving breakpoint (#169932)
The test was flaky, because it assumed that the breakpoint was always
resolved before `r` was executed
(https://github.com/llvm/llvm-project/pull/169728#issuecomment-3589799783).
This PR removes the check for this order. It still checks that the
breakpoint is resolved before it is hit.
Added:
Modified:
lldb/test/Shell/SymbolFile/PDB/add-symbols.cpp
Removed:
################################################################################
diff --git a/lldb/test/Shell/SymbolFile/PDB/add-symbols.cpp b/lldb/test/Shell/SymbolFile/PDB/add-symbols.cpp
index ef7690b1720a6..64fbc84a98f24 100644
--- a/lldb/test/Shell/SymbolFile/PDB/add-symbols.cpp
+++ b/lldb/test/Shell/SymbolFile/PDB/add-symbols.cpp
@@ -25,7 +25,7 @@
// CHECK-NEXT: Breakpoint 1: no locations (pending).
// CHECK: (lldb) target symbols add
// CHECK: 1 location added to breakpoint 1
-// CHECK: (lldb) r
+
// CHECK: * thread #1, stop reason = breakpoint 1.1
// CHECK: (lldb) target variable a
// CHECK-NEXT: (A) a = (x = 47)
More information about the lldb-commits
mailing list