[Lldb-commits] [lldb] 20e55f3 - [lldb][NFC] Mark API test skipIfRemote to avoid a bot
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Sep 11 14:19:53 PDT 2025
Author: Jason Molenda
Date: 2025-09-11T14:19:44-07:00
New Revision: 20e55f359dc424fa23392ad7ecd766294b60accc
URL: https://github.com/llvm/llvm-project/commit/20e55f359dc424fa23392ad7ecd766294b60accc
DIFF: https://github.com/llvm/llvm-project/commit/20e55f359dc424fa23392ad7ecd766294b60accc.diff
LOG: [lldb][NFC] Mark API test skipIfRemote to avoid a bot
The lldb-remote-linux-ubuntu bot (and only this bot) is still failing
for TestCortexMExceptionUnwind.py because the Target triple is
somehow inheriting a non-Darwin OS. I marked this API test
skipUnlessDarwin but this bot can be identified more specifically
by a skipIfRemote test. There's no benefit to running this test
remotely anyway; it doesn't execute any code.
Added:
Modified:
lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py b/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
index 30b2a525eaab1..768dd6fe6867c 100644
--- a/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
+++ b/lldb/test/API/functionalities/unwind/cortex-m-exception/TestCortexMExceptionUnwind.py
@@ -26,10 +26,7 @@ class TestCortexMExceptionUnwind(TestBase):
# the frame pointer, and we can walk the stack.
# ABISysV_arm::CreateDefaultUnwindPlan will only get one frame and
# not be able to continue.
- #
- # This may only be occuring on a 32-bit Ubuntu bot; need to test
- # 64-bit Ubuntu and confirm.
- @skipUnlessDarwin
+ @skipIfRemote
def test_no_fpu(self):
"""Test that we can backtrace correctly through an ARM Cortex-M Exception return stack"""
More information about the lldb-commits
mailing list