[Lldb-commits] [lldb] b58dd92 - [lldb-vscode] Skip restart tests on ARM
Leandro Lupori via lldb-commits
lldb-commits at lists.llvm.org
Fri May 12 09:52:44 PDT 2023
Author: Leandro Lupori
Date: 2023-05-12T13:52:17-03:00
New Revision: b58dd9230e655feb0d904b8095f113a4f0246cbf
URL: https://github.com/llvm/llvm-project/commit/b58dd9230e655feb0d904b8095f113a4f0246cbf
DIFF: https://github.com/llvm/llvm-project/commit/b58dd9230e655feb0d904b8095f113a4f0246cbf.diff
LOG: [lldb-vscode] Skip restart tests on ARM
These tests always time out on ARM buildbot. Disabling them for
now, until https://github.com/llvm/llvm-project/issues/62684 is
fixed.
Added:
Modified:
lldb/test/API/tools/lldb-vscode/restart/TestVSCode_restart_runInTerminal.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-vscode/restart/TestVSCode_restart_runInTerminal.py b/lldb/test/API/tools/lldb-vscode/restart/TestVSCode_restart_runInTerminal.py
index f250e014cfe3d..48931f4e1bb5c 100644
--- a/lldb/test/API/tools/lldb-vscode/restart/TestVSCode_restart_runInTerminal.py
+++ b/lldb/test/API/tools/lldb-vscode/restart/TestVSCode_restart_runInTerminal.py
@@ -24,6 +24,7 @@ def isTestSupported(self):
@skipIfWindows
@skipIfRemote
+ @skipIf(archs=["arm"]) # Always times out on buildbot
def test_basic_functionality(self):
'''
Test basic restarting functionality when the process is running in
@@ -58,6 +59,7 @@ def test_basic_functionality(self):
@skipIfWindows
@skipIfRemote
+ @skipIf(archs=["arm"]) # Always times out on buildbot
def test_stopOnEntry(self):
'''
Check that stopOnEntry works correctly when using runInTerminal.
More information about the lldb-commits
mailing list