From c14e11b0bb269e3744d5858b13a6df244308f25f Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 15 Jul 2020 15:39:24 -0700 Subject: [PATCH] [lldb/Test] Skip async process connect tests with reproducers Reproducers only support synchronous mode. --- .../API/functionalities/gdb_remote_client/TestProcessConnect.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py index e9e6b4e38ce1..14891b24249b 100644 --- a/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py +++ b/lldb/test/API/functionalities/gdb_remote_client/TestProcessConnect.py @@ -21,6 +21,7 @@ class TestProcessConnect(GDBRemoteTestBase): self.dbg.GetSelectedPlatform().DisconnectRemote() @skipIfWindows + @skipIfReproducer # Reproducer don't support async. def test_gdb_remote_async(self): """Test the gdb-remote command in asynchronous mode""" try: @@ -45,6 +46,7 @@ class TestProcessConnect(GDBRemoteTestBase): 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""" try: -- 2.34.1