From: Michał Górny Date: Mon, 23 Nov 2020 13:27:02 +0000 (+0100) Subject: [lldb] [test] Restore Windows-skip on 'process connect' tests X-Git-Tag: llvmorg-13-init~5360 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8f6f4e8733cd601246ddc3e391cd82236231846;p=platform%2Fupstream%2Fllvm.git [lldb] [test] Restore Windows-skip on 'process connect' tests --- diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py index e9152f0..c2d06ad5 100644 --- a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py +++ b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py @@ -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""" diff --git a/lldb/test/Shell/Commands/command-process-connect.test b/lldb/test/Shell/Commands/command-process-connect.test index c476136..3078224 100644 --- a/lldb/test/Shell/Commands/command-process-connect.test +++ b/lldb/test/Shell/Commands/command-process-connect.test @@ -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