[lldb] [test] Restore Windows-skip on 'process connect' tests

This commit is contained in:
Michał Górny 2020-11-23 14:27:02 +01:00
parent 2745d9c586
commit a8f6f4e873
2 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class TestProcessConnect(GDBRemoteTestBase):
finally:
self.dbg.GetSelectedPlatform().DisconnectRemote()
@skipIfWindows
def test_process_connect_sync(self):
"""Test the gdb-remote command in synchronous mode"""
try:
@ -43,6 +44,7 @@ class TestProcessConnect(GDBRemoteTestBase):
finally:
self.dbg.GetSelectedPlatform().DisconnectRemote()
@skipIfWindows
@skipIfReproducer # Reproducer don't support async.
def test_process_connect_async(self):
"""Test the gdb-remote command in asynchronous mode"""

View File

@ -1,3 +1,5 @@
# UNSUPPORTED: system-windows
# Synchronous
# RUN: %lldb -o 'platform select remote-gdb-server' -o 'process connect connect://localhost:4321' 2>&1 | FileCheck %s