[Lldb-commits] [lldb] 3c22996 - [LLDB] Disable lldb-vscode test_terminate_commands test on Arm
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 15 15:34:06 PDT 2020
Author: Muhammad Omair Javaid
Date: 2020-07-16T03:33:52+05:00
New Revision: 3c2299612945caf75d5c3678ced0693ebd291819
URL: https://github.com/llvm/llvm-project/commit/3c2299612945caf75d5c3678ced0693ebd291819
DIFF: https://github.com/llvm/llvm-project/commit/3c2299612945caf75d5c3678ced0693ebd291819.diff
LOG: [LLDB] Disable lldb-vscode test_terminate_commands test on Arm
Summary:
test_terminate_commands is flaky on LLDB Arm buildbot as well. It was already
being skipped for aarch64. I am going to mark it skipped for Arm too.
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D81978
Added:
Modified:
lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
Removed:
################################################################################
diff --git a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
index fb7d71872a16..b63eb6e7201c 100644
--- a/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
+++ b/lldb/test/API/tools/lldb-vscode/launch/TestVSCode_launch.py
@@ -431,7 +431,7 @@ def test_extra_launch_commands(self):
@skipIfWindows
@skipIfNetBSD # Hangs on NetBSD as well
@skipIfDarwin
- @skipIf(archs="aarch64") # Example of a flaky run http://lab.llvm.org:8011/builders/lldb-aarch64-ubuntu/builds/5540/steps/test/logs/stdio
+ @skipIf(archs=["arm", "aarch64"]) # Example of a flaky run http://lab.llvm.org:8011/builders/lldb-aarch64-ubuntu/builds/5540/steps/test/logs/stdio
def test_terminate_commands(self):
'''
Tests that the "terminateCommands", that can be passed during
More information about the lldb-commits
mailing list