Skip to content

Commit

Permalink
[LLDB] Disable lldb-vscode test_terminate_commands test on Arm
Browse files Browse the repository at this point in the history
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
  • Loading branch information
omjavaid committed Jul 15, 2020
1 parent b201819 commit 3c22996
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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
Expand Down

0 comments on commit 3c22996

Please sign in to comment.