Skip to content

Commit 56d3c6a

Browse files
DavidSpickettgithub-actions[bot]
authored andcommitted
Automerge: [lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs
Original in llvm/llvm-project#134626 was written as if it was "this or this" but it's "this and this". So the test ran on AArch64 Linux, because Linux is not Windows. Split out the Windows check to fix that.
2 parents 3fc54a4 + 8f288eb commit 56d3c6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/python_api/target/read-instructions-flavor/TestTargetReadInstructionsFlavor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88

99
class TargetReadInstructionsFlavor(TestBase):
10-
@skipIf(archs=no_match(["x86_64", "x86", "i386"]), oslist=["windows"])
10+
@skipIfWindows
11+
@skipIf(archs=no_match(["x86_64", "x86", "i386"]))
1112
def test_read_instructions_with_flavor(self):
1213
self.build()
1314
executable = self.getBuildArtifact("a.out")

0 commit comments

Comments
 (0)