Skip to content

Commit c6e8bf7

Browse files
committed
[lldb/Test] Skip TestProcessConnect.py on Windows
Remote connections are not supported on Windows.
1 parent 4aafc47 commit c6e8bf7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class TestProcessConnect(GDBRemoteTestBase):
1010

1111
NO_DEBUG_INFO_TESTCASE = True
1212

13-
@expectedFailureAll(hostoslist=["windows"], triple='.*-android')
13+
@skipIfWindows
1414
def test_gdb_remote_sync(self):
1515
"""Test the gdb-remote command in synchronous mode"""
1616
try:
@@ -20,7 +20,7 @@ def test_gdb_remote_sync(self):
2020
finally:
2121
self.dbg.GetSelectedPlatform().DisconnectRemote()
2222

23-
@expectedFailureAll(hostoslist=["windows"], triple='.*-android')
23+
@skipIfWindows
2424
def test_gdb_remote_async(self):
2525
"""Test the gdb-remote command in asynchronous mode"""
2626
try:
@@ -33,7 +33,7 @@ def test_gdb_remote_async(self):
3333
finally:
3434
self.dbg.GetSelectedPlatform().DisconnectRemote()
3535

36-
@expectedFailureAll(hostoslist=["windows"], triple='.*-android')
36+
@skipIfWindows
3737
def test_process_connect_sync(self):
3838
"""Test the gdb-remote command in synchronous mode"""
3939
try:
@@ -44,7 +44,7 @@ def test_process_connect_sync(self):
4444
finally:
4545
self.dbg.GetSelectedPlatform().DisconnectRemote()
4646

47-
@expectedFailureAll(hostoslist=["windows"], triple='.*-android')
47+
@skipIfWindows
4848
def test_process_connect_async(self):
4949
"""Test the gdb-remote command in asynchronous mode"""
5050
try:

0 commit comments

Comments
 (0)