Skip to content

Commit 8f288eb

Browse files
DavidSpicketttstellar
authored andcommitted
[lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs
Original in llvm#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.
1 parent d76ec6a commit 8f288eb

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)