[lldb] Update TestDelayedBreakpoint test to use the right setting#198751
Merged
felipepiovezan merged 1 commit intoMay 20, 2026
Conversation
This test should regardless of which setting is the default for delayed breakpoints.
Contributor
Author
|
This is just a test change, so I will go ahead and merge it. |
felipepiovezan
enabled auto-merge (squash)
May 20, 2026 10:54
|
@llvm/pr-subscribers-lldb Author: Felipe de Azevedo Piovezan (felipepiovezan) ChangesThis test should regardless of which setting is the default for delayed breakpoints. Full diff: https://github.com/llvm/llvm-project/pull/198751.diff 1 Files Affected:
diff --git a/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/TestDelayedBreakpoint.py b/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/TestDelayedBreakpoint.py
index e6a6390f8f1b6..a3709fd62a202 100644
--- a/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/TestDelayedBreakpoint.py
+++ b/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/TestDelayedBreakpoint.py
@@ -9,6 +9,7 @@
class TestDelayedBreakpoint(TestBase):
def test(self):
self.build()
+ self.runCmd("settings set target.process.use-delayed-breakpoints true")
logfile = os.path.join(self.getBuildDir(), "log.txt")
self.runCmd(f"log enable -f {logfile} gdb-remote packets")
@@ -45,6 +46,7 @@ def test(self):
def test_eager_breakpoints(self):
self.build()
+ self.runCmd("settings set target.process.use-delayed-breakpoints true")
logfile = os.path.join(self.getBuildDir(), "log.txt")
self.runCmd(f"log enable -f {logfile} gdb-remote packets")
|
felipepiovezan
added a commit
to felipepiovezan/llvm-project
that referenced
this pull request
May 20, 2026
…vm#198751) This test should regardless of which setting is the default for delayed breakpoints. (cherry picked from commit 4813043)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This test should regardless of which setting is the default for delayed breakpoints.