Skip to content

Commit ea61200

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 726a8ae + 5b384c3 commit ea61200

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)