[Lldb-commits] [lldb] [lldb][FreeBSD] Remove corefile test xfails (PR #84022)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 5 06:44:52 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: David Spickett (DavidSpickett)
<details>
<summary>Changes</summary>
Fixes #<!-- -->48759
As stated on the issue this was fixed by a change in FreeBSD 13, and I've confirmed that it passes on 14 as well.
---
Full diff: https://github.com/llvm/llvm-project/pull/84022.diff
1 Files Affected:
- (modified) lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py (+2-6)
``````````diff
diff --git a/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py b/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
index 7ec5e0d7c8309b..8ec0cbdd0fdd1f 100644
--- a/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
+++ b/lldb/test/API/functionalities/postmortem/elf-core/TestLinuxCore.py
@@ -292,9 +292,7 @@ def test_aarch64_pac(self):
self.dbg.DeleteTarget(target)
@skipIfLLVMTargetMissing("AArch64")
- @expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49415"
- )
+ # This test fails on FreeBSD 12 and earlier, see llvm.org/pr49415 for details.
def test_aarch64_regs(self):
# check 64 bit ARM core files
target = self.dbg.CreateTarget(None)
@@ -377,9 +375,7 @@ def test_aarch64_regs(self):
self.expect("register read --all")
@skipIfLLVMTargetMissing("AArch64")
- @expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49415"
- )
+ # This test fails on FreeBSD 12 and earlier, see llvm.org/pr49415 for details.
def test_aarch64_sve_regs_fpsimd(self):
# check 64 bit ARM core files
target = self.dbg.CreateTarget(None)
``````````
</details>
https://github.com/llvm/llvm-project/pull/84022
More information about the lldb-commits
mailing list