[Lldb-commits] [lldb] [lldb] Restrict TestVariableAnnotationsDisassembler.py to ELF x86_64 (skip on Windows/COFF) (PR #156026)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 29 07:55:58 PDT 2025


https://github.com/DavidSpickett commented:

You might be able to apply the skip to the class, instead of repeating it for each function. Can you try that?

One test for example does this:
```
# Windows does not allow quotes in file names.
@skipIf(hostoslist=["windows"])
@skipIfRemote
class TestGdbRemoteLibrariesSvr4Support(gdbremote_testcase.GdbRemoteTestCaseBase):
    FEATURE_NAME = "qXfer:libraries-svr4:read"
```
Certain decorators might not work in that position though, so give it a go.

https://github.com/llvm/llvm-project/pull/156026


More information about the lldb-commits mailing list