[Lldb-commits] [PATCH] D127999: [lldb] fix stepping through POSIX trampolines

Michael Daniels via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 17 08:38:39 PDT 2022


mdaniels added a comment.

@JDevlieghere could you confirm my understanding of the issue here is correct?

It looks like https://github.com/llvm/llvm-project/issues/54250 is the same issue, and should be fix with this as well.



================
Comment at: lldb/test/API/lang/cpp/step-into-namespace/TestStepIntoNamespace.py:8
+
+    def test(self):
+        self.build()
----------------
clayborg wrote:
> Do we want to limit this to linux? I am not sure this will pass the windows buildbots if we don't restrict it
Looking at other tests that load a shared library, it seems I should have at least

```
@skipIfRemote
@skipIfWindows
```
But I can also just restrict it to the platforms I am able to test on locally, linux and darwin, if there is still concern that other platforms might fail.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D127999/new/

https://reviews.llvm.org/D127999



More information about the lldb-commits mailing list