summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py
AgeCommit message (Collapse)Author
2025-09-10[lldb][test] StepUntil disable test for unsupported linkers. (#157474)Ebuka Ezike
`INSERT BEFORE` keyword is not supported in current versions gold and mold linkers. Since we cannot confirm accurately what linker and version is available on the system and when it will be supported. We test it with a sample program using the script keywords.
2025-01-17[lldb] Skip TestStepUntilAPI on !x86_64, !aarch64Pavel Labath
The compiler does not support this feature on other architectures.
2025-01-17[lldb] Fix SBThread::StepOverUntil for discontinuous functions (#123046)Pavel Labath
I think the only issue here was that we would erroneously consider functions which are "in the middle" of the function were stepping to as a part of the function, and would try to step into them (likely stepping out of the function instead) instead of giving up early.