[lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs · llvm/llvm-project@8f288eb (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 8f288eb
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
- lldb/test/API/python_api/target/read-instructions-flavor
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") |