https://github.com/DavidSpickett updated https://github.com/llvm/llvm-project/pull/219139
>From e64a15d792ae8c8c516ee7016ab2c5e4f48975d7 Mon Sep 17 00:00:00 2001 From: David Spickett <[email protected]> Date: Thu, 27 Aug 2026 08:09:24 +0000 Subject: [PATCH 1/2] [lldb][test] Disable TestDAP_attach.py on AArch64 Linux We've had many reports of timeouts in pre and post-commit. https://github.com/llvm/llvm-project/issues/137660 --- lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py index bd00ea0d39e21..59c9b80bedbfd 100644 --- a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py +++ b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py @@ -16,9 +16,11 @@ ) -# Often fails on Arm Linux, but not specifically because it's Arm, something in -# process scheduling can cause a massive (minutes) delay during this test. -@skipIf(oslist=["linux"], archs=["arm$"]) +# Often fails on Arm/AArch64 Linux, but not specifically because of the, +# architecture, something in process scheduling can cause a massive (minutes) +# delay during this test. +# https://github.com/llvm/llvm-project/issues/137660 +@skipIf(oslist=["linux"], archs=["arm$", "aarch64"]) @requireNotWasm("no attach support") class TestDAP_attach(DAPTestCaseBase): SHARED_BUILD_TESTCASE = False >From 3f3a1942849f2e3cd451920e7f6cd6847f6086ae Mon Sep 17 00:00:00 2001 From: David Spickett <[email protected]> Date: Thu, 27 Aug 2026 08:11:24 +0000 Subject: [PATCH 2/2] typo --- lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py index 59c9b80bedbfd..6f7190828b95c 100644 --- a/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py +++ b/lldb/test/API/tools/lldb-dap/attach/TestDAP_attach.py @@ -16,7 +16,7 @@ ) -# Often fails on Arm/AArch64 Linux, but not specifically because of the, +# Often fails on Arm/AArch64 Linux, but not specifically because of the # architecture, something in process scheduling can cause a massive (minutes) # delay during this test. # https://github.com/llvm/llvm-project/issues/137660 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
