[lldb] [test] Restore Windows-skip on 'process connect' tests
authorMichał Górny <mgorny@moritz.systems>
Mon, 23 Nov 2020 13:27:02 +0000 (14:27 +0100)
committerMichał Górny <mgorny@moritz.systems>
Mon, 23 Nov 2020 13:27:32 +0000 (14:27 +0100)
lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py
lldb/test/Shell/Commands/command-process-connect.test

index e9152f0..c2d06ad 100644 (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"""
index c476136..3078224 100644 (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