Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 76ddd45

Browse files
[lldb-dap][Windows] skip TestDAP_restart_console (#201587)
`TestDAP_restart_console` is already failing on Windows. It reliably crashes (UNRESOLVED) on some Windows version, including inside Docker containers. This is preventing us from enabling pre-merge CI testing for lldb on Windows in #198906. This patch skips the test entirely. See #200840 for more details.
1 parent 39dc841 commit 76ddd45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lldb/test/API/tools/lldb-dap/restart/TestDAP_restart_console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@skipIfBuildType(["debug"])
1313
class TestDAP_restart_console(lldbdap_testcase.DAPTestCaseBase):
1414
@skipIfAsan
15-
@expectedFailureWindows
15+
@skipIfWindows # https://github.com/llvm/llvm-project/issues/200840
1616
@skipIf(oslist=["linux"], archs=["arm$"]) # Always times out on buildbot
1717
def test_basic_functionality(self):
1818
"""
@@ -61,7 +61,7 @@ def test_basic_functionality(self):
6161
self.continue_to_exit()
6262

6363
@skipIfAsan
64-
@expectedFailureWindows
64+
@skipIfWindows # https://github.com/llvm/llvm-project/issues/200840
6565
@skipIf(oslist=["linux"], archs=["arm$"]) # Always times out on buildbot
6666
def test_stopOnEntry(self):
6767
"""

0 commit comments

Comments
 (0)