[lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs · llvm/llvm-project@8f288eb (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 8f288eb

DavidSpicketttstellar

authored and

committed

[lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs

Original in #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.

File tree

1 file changed

lines changed

1 file changed

lines changed

Lines changed: 2 additions & 1 deletion

Original file line number Diff line number Diff line change
@@ -7,7 +7,8 @@
7 7
8 8
9 9 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"]))
11 12 def test_read_instructions_with_flavor(self):
12 13 self.build()
13 14 executable = self.getBuildArtifact("a.out")