[Lldb-commits] [lldb] 4f65345 - [lldb][lldb-dap][test] Disable part of TestDAP_launch on Arm 32-bit
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 15 05:28:14 PDT 2025
Author: David Spickett
Date: 2025-08-15T12:26:45Z
New Revision: 4f65345ab5f2787a4704efb5828657c50be6d65a
URL: https://github.com/llvm/llvm-project/commit/4f65345ab5f2787a4704efb5828657c50be6d65a
DIFF: https://github.com/llvm/llvm-project/commit/4f65345ab5f2787a4704efb5828657c50be6d65a.diff
LOG: [lldb][lldb-dap][test] Disable part of TestDAP_launch on Arm 32-bit
This test has been flakey on our bot:
https://lab.llvm.org/buildbot/#/builders/18/builds/20410
```
======================================================================
FAIL: test_extra_launch_commands (TestDAP_launch.TestDAP_launch)
Tests the "launchCommands" with extra launching settings
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/tcwg-buildbot/worker/lldb-arm-ubuntu/llvm-project/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py", line 482, in test_extra_launch_commands
self.verify_commands("stopCommands", output, stopCommands)
File "/home/tcwg-buildbot/worker/lldb-arm-ubuntu/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/lldbdap_testcase.py", line 228, in verify_commands
self.assertTrue(
AssertionError: False is not true : verify 'frame variable' found in console output for 'stopCommands'
Config=arm-/home/tcwg-buildbot/worker/lldb-arm-ubuntu/build/bin/clang
----------------------------------------------------------------------
```
Likely a timing issue waiting for the command output on a slower
machine.
General tracking issue - https://github.com/llvm/llvm-project/issues/137660
Added:
Modified:
lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
index a611cc30c1897..d53ea9722e6f8 100644
--- a/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
+++ b/lldb/test/API/tools/lldb-dap/launch/TestDAP_launch.py
@@ -431,6 +431,8 @@ def test_commands(self):
self.verify_commands("exitCommands", output, exitCommands)
self.verify_commands("terminateCommands", output, terminateCommands)
+ # Flakey on 32-bit Arm Linux.
+ @skipif(oslist=["linux"], archs=["arm$"])
def test_extra_launch_commands(self):
"""
Tests the "launchCommands" with extra launching settings
More information about the lldb-commits
mailing list