diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-11 15:58:27 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-11-11 15:59:54 -0800 |
commit | 0b8dfb5762fdc350c5071c9eeffd4f7e4d495e98 (patch) | |
tree | 116222c9260b5c24d83ffa11d075c91ce39ab7d0 /lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach | |
parent | 9e5116f756f05b68e8394e392027dca7bc574559 (diff) | |
download | bcm5719-llvm-0b8dfb5762fdc350c5071c9eeffd4f7e4d495e98.tar.gz bcm5719-llvm-0b8dfb5762fdc350c5071c9eeffd4f7e4d495e98.zip |
[lldb] Re-enable VSCode tests
The VSCode tests were all disabled on macOS because the implementation
had some issues that resulted in flakiness on Darwin. It seems most of
these issues have been addressed. I've re-enabled all the tests that
consistently passed locally.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py index 2cac88fa0d4..7c219b95b59 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py @@ -46,7 +46,6 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase): @skipIfWindows - @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots @skipIfNetBSD # Hangs on NetBSD as well @no_debug_info_test def test_by_pid(self): @@ -63,7 +62,6 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase): self.set_and_hit_breakpoint(continueToExit=True) @skipIfWindows - @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots @skipIfNetBSD # Hangs on NetBSD as well @no_debug_info_test def test_by_name(self): @@ -99,7 +97,7 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase): self.set_and_hit_breakpoint(continueToExit=True) @skipUnlessDarwin - @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots + @skipIfDarwin @skipIfNetBSD # Hangs on NetBSD as well @no_debug_info_test def test_by_name_waitFor(self): @@ -117,7 +115,7 @@ class TestVSCode_attach(lldbvscode_testcase.VSCodeTestCaseBase): self.set_and_hit_breakpoint(continueToExit=True) @skipIfWindows - @skipIfDarwin # Skip this test for now until we can figure out why tings aren't working on build bots + @skipIfDarwin @skipIfNetBSD # Hangs on NetBSD as well @no_debug_info_test def test_commands(self): |