Skip to content

Commit

Permalink
[lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (#84026)
Browse files Browse the repository at this point in the history
Fixes #48758

These are now passing on AArch64 FreeBSD 14.
  • Loading branch information
DavidSpickett committed May 2, 2024
1 parent d11afe1 commit fbaba78
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@


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")
Expand All @@ -20,9 +17,6 @@ def test_module_load_address(self):
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")
Expand All @@ -31,9 +25,6 @@ def test_ram_load(self):
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"""

Expand Down

0 comments on commit fbaba78

Please sign in to comment.