diff options
| author | Dmitry Vasilyev <dvassiliev@accesssoftek.com> | 2024-11-11 12:40:01 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-11 12:40:01 +0400 |
| commit | 1277bea4311692d3bd3d1a6566ec1011d3e72f65 (patch) | |
| tree | be4701a00027ffb4f9559dbd4f75ba20fed23cff /lldb/test/API/python_api | |
| parent | 2a448da6e63e2cd3dac63d5398bf121e994d7fc2 (diff) | |
| download | llvm-1277bea4311692d3bd3d1a6566ec1011d3e72f65.zip llvm-1277bea4311692d3bd3d1a6566ec1011d3e72f65.tar.gz llvm-1277bea4311692d3bd3d1a6566ec1011d3e72f65.tar.bz2 | |
[lldb] Disable TestCancelAttach for Windows host (#115619)
See #115618 for details.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py b/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py index 9f643d5..3be0a85 100644 --- a/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py +++ b/lldb/test/API/python_api/process/cancel_attach/TestCancelAttach.py @@ -14,6 +14,11 @@ import lldbsuite.test.lldbutil class AttachCancelTestCase(TestBase): NO_DEBUG_INFO_TESTCASE = True + @skipIf( + remote=True, + hostoslist=["windows"], + bugnumber="https://github.com/llvm/llvm-project/issues/115618", + ) def test_scripted_implementation(self): """Test that cancelling a stuck "attach waitfor" works.""" # First make an empty target for the attach: |
