llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: None (daniilavdeev) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/182126.diff 1 Files Affected: - (modified) lldb/test/API/riscv/disassembler/TestDisassembler.py (+3) ``````````diff diff --git a/lldb/test/API/riscv/disassembler/TestDisassembler.py b/lldb/test/API/riscv/disassembler/TestDisassembler.py index 2f01283786b1f..d1badc153f486 100644 --- a/lldb/test/API/riscv/disassembler/TestDisassembler.py +++ b/lldb/test/API/riscv/disassembler/TestDisassembler.py @@ -12,6 +12,7 @@ class TestDisassembler(TestBase): expected_zbb_instrs = ["andn", "orn", "xnor", "rol", "ror"] + @skipIfLLVMTargetMissing("RISCV") def test_without_riscv_attributes(self): """ Tests disassembly of a riscv binary without the .riscv.attributes. @@ -39,6 +40,7 @@ def test_without_riscv_attributes(self): "Instructions from the Zbb extension should be displayed as <unknown>", ) + @skipIfLLVMTargetMissing("RISCV") def test_with_riscv_attributes(self): """ Tests disassembly of a riscv binary with the .riscv.attributes. @@ -55,6 +57,7 @@ def test_with_riscv_attributes(self): for instr in self.expected_zbb_instrs: self.assertTrue(instr in output, "Invalid disassembler output") + @skipIfLLVMTargetMissing("RISCV") def test_conflicting_extensions(self): """ This test demonstrates the scenario where: `````````` </details> https://github.com/llvm/llvm-project/pull/182126 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
