[Lldb-commits] [lldb] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (PR #84026)

2024-05-02 Thread David Spickett via lldb-commits

https://github.com/DavidSpickett closed 
https://github.com/llvm/llvm-project/pull/84026
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits


[Lldb-commits] [lldb] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (PR #84026)

2024-05-02 Thread Ed Maste via lldb-commits

https://github.com/emaste approved this pull request.


https://github.com/llvm/llvm-project/pull/84026
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits


[Lldb-commits] [lldb] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (PR #84026)

2024-05-02 Thread David Spickett via lldb-commits

DavidSpickett wrote:

ping!

https://github.com/llvm/llvm-project/pull/84026
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits


[Lldb-commits] [lldb] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (PR #84026)

2024-03-05 Thread via lldb-commits

llvmbot wrote:




@llvm/pr-subscribers-lldb

Author: David Spickett (DavidSpickett)


Changes

Fixes #48758

These are now passing on AArch64 FreeBSD 14.

---
Full diff: https://github.com/llvm/llvm-project/pull/84026.diff


1 Files Affected:

- (modified) 
lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py (-9) 


``diff
diff --git 
a/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py 
b/lldb/test/API/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
index c39cb4cd59aa07..f0a5429e6c1cec 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 @@
 
 
 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 @@ 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")
@@ -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"""
 

``




https://github.com/llvm/llvm-project/pull/84026
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits


[Lldb-commits] [lldb] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad (PR #84026)

2024-03-05 Thread David Spickett via lldb-commits

https://github.com/DavidSpickett created 
https://github.com/llvm/llvm-project/pull/84026

Fixes #48758

These are now passing on AArch64 FreeBSD 14.

>From 746413849693e1e4e6d667fc136d90bc97486d82 Mon Sep 17 00:00:00 2001
From: David Spickett 
Date: Tue, 5 Mar 2024 15:06:49 +
Subject: [PATCH] [lldb][test][FreeBSD] Remove xfails from TestGDBRemoteLoad

Fixes #48758

These are now passing on AArch64 FreeBSD 14.
---
 .../gdb_remote_client/TestGDBRemoteLoad.py   | 9 -
 1 file changed, 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 c39cb4cd59aa07..f0a5429e6c1cec 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 @@
 
 
 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 @@ 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")
@@ -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"""
 

___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits