[Lldb-commits] [lldb] [lldb] Fix SBTarget::ReadInstruction with flavor (PR #134626)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 11 06:11:59 PDT 2025


================
@@ -0,0 +1,39 @@
+"""
+Test SBTarget Read Instruction.
+"""
+
+from lldbsuite.test.decorators import *
+from lldbsuite.test.lldbtest import *
+
+
+class TargetReadInstructionsFlavor(TestBase):
+    @skipIf(archs=no_match(["x86_64", "x86", "i386"]), oslist=["windows"])
----------------
DavidSpickett wrote:

Yep, it's "and":
```
# @skipIf(bugnumber, ["linux"], "gcc", ['>=', '4.9'], ['i386']), skip for gcc>=4.9 on linux with i386 (all conditions must be true)
```
That's why it's running on AArch64 linux, that matches the "not these architectures" but not the "is on windows" bit.

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


More information about the lldb-commits mailing list