From 424d201ab6b3b1ec72954564506ec3f1cfff6875 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Wed, 19 Aug 2026 18:24:06 +0200 Subject: [PATCH] support/testing: remove TestGdbArc The Arc specific gdb version was removed by commit [1] but we still have the TestGdbArc that was testing this version of gdb. We can now safely remove TestGdbArc. [1] 0b3d526226662af8b16525aecec7da5ff0e5fa1d Signed-off-by: Romain Naour Signed-off-by: Julien Olivain (cherry picked from commit 2f6b34f8519ad7f47814edbf3c49869213aef423) Signed-off-by: Titouan Christophe --- support/testing/tests/package/test_gdb.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/support/testing/tests/package/test_gdb.py b/support/testing/tests/package/test_gdb.py index 324052efdb..78395b1847 100644 --- a/support/testing/tests/package/test_gdb.py +++ b/support/testing/tests/package/test_gdb.py @@ -89,19 +89,3 @@ class TestGdbFullTarget(BaseGdb): def test_run(self): self.boot() self.verify_gdb() - - -class TestGdbArc(BaseGdb): - config = \ - """ - BR2_arcle=y - BR2_archs38=y - BR2_TOOLCHAIN_EXTERNAL=y - BR2_PACKAGE_HOST_GDB=y - BR2_PACKAGE_GDB=y - BR2_PACKAGE_GDB_SERVER=y - BR2_PACKAGE_GDB_DEBUGGER=y - """ - - def test_run(self): - self.verify_host_gdb("arc-linux")