forked from OSchip/llvm-project
[lldb] [test] Restore Windows-skip on 'process connect' tests
This commit is contained in:
parent
2745d9c586
commit
a8f6f4e873
|
@ -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"""
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue