aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2024-05-02 16:55:42 +0100
committerGitHub <noreply@github.com>2024-05-02 16:55:42 +0100
commitfbaba780f6b131e7674259861fce915b1a94f78e (patch)
tree9aba5d7569a951bdb086a65ad885ecc984830a94
parentd11afe1c743924f309e41c5e5d497d6a6f5c17d6 (diff)
downloadllvm-fbaba780f6b131e7674259861fce915b1a94f78e.zip
llvm-fbaba780f6b131e7674259861fce915b1a94f78e.tar.gz
llvm-fbaba780f6b131e7674259861fce915b1a94f78e.tar.bz2
[lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (#84026)
Fixes #48758 These are now passing on AArch64 FreeBSD 14.
-rw-r--r--lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
index c39cb4c..f0a5429 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
@@ -6,9 +6,6 @@ from lldbsuite.test.lldbgdbclient import GDBRemoteTestBase
class TestGDBRemoteLoad(GDBRemoteTestBase):
- @expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49414"
- )
def test_module_load_address(self):
"""Test that setting the load address of a module uses virtual addresses"""
target = self.createTarget("a.yaml")
@@ -20,9 +17,6 @@ class TestGDBRemoteLoad(GDBRemoteTestBase):
self.assertTrue(address.IsValid())
self.assertEqual(".data", address.GetSection().GetName())
- @expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49414"
- )
def test_ram_load(self):
"""Test loading an object file to a target's ram"""
target = self.createTarget("a.yaml")
@@ -31,9 +25,6 @@ class TestGDBRemoteLoad(GDBRemoteTestBase):
self.assertPacketLogContains(["M1000,4:c3c3c3c3", "M1004,2:3232"])
@skipIfXmlSupportMissing
- @expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49414"
- )
def test_flash_load(self):
"""Test loading an object file to a target's flash memory"""