diff options
| author | David Spickett <david.spickett@linaro.org> | 2025-11-11 10:41:21 +0000 |
|---|---|---|
| committer | David Spickett <david.spickett@linaro.org> | 2025-11-11 10:43:43 +0000 |
| commit | 0f4c8dd87af61ec5e254bec9f144e9dbc8bc2229 (patch) | |
| tree | c76b93a03418f1fdda8cf266ce1adb012bd7891b /lldb/test/API/functionalities/thread | |
| parent | efc0ab0f81451e495ae0f8a746ca6960dab0fb73 (diff) | |
| download | llvm-0f4c8dd87af61ec5e254bec9f144e9dbc8bc2229.tar.gz llvm-0f4c8dd87af61ec5e254bec9f144e9dbc8bc2229.tar.bz2 llvm-0f4c8dd87af61ec5e254bec9f144e9dbc8bc2229.zip | |
[lldb][test] Fix ThreadStepUntilAPI.py
After #167359 / 95db31e7f69e7008f0c570ed30d54d1e418e10f2.
A fix was attempted in #167423 but was not quite enough.
From what I could understand, in v1 format you have to specify
all the basic blocks. Where before !call_me implied they were all
cold (I think, very shaky understanding here).
For this test we want to see blocks like call_me/foo/call_me.
So adding a line for block 1 fixes the tests.
It could produce more blocks at some point but I think as long
as foo is within two of them, it'll be fine.
Diffstat (limited to 'lldb/test/API/functionalities/thread')
| -rw-r--r-- | lldb/test/API/functionalities/thread/step_until/function.list | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/functionalities/thread/step_until/function.list b/lldb/test/API/functionalities/thread/step_until/function.list index 43c121eff963..d8caa20ad355 100644 --- a/lldb/test/API/functionalities/thread/step_until/function.list +++ b/lldb/test/API/functionalities/thread/step_until/function.list @@ -1,3 +1,4 @@ v1 f call_me c 0 +c 1 |
