Commit f5f15ace authored by Jonas Devlieghere's avatar Jonas Devlieghere
Browse files

[lldb/Test] Skip TestProcessConnect.py on Windows

Skip TestProcessConnect.py on Windows and Android (the same platforms as
TestPlatformProcessConnect.py) and mark it as a NO_DEBUG_INFO test so we
don't run all the variants.
parent dbf486c0
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -7,6 +7,10 @@ from gdbclientutils import *


class TestProcessConnect(GDBRemoteTestBase):

    NO_DEBUG_INFO_TESTCASE = True

    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
    def test_gdb_remote_sync(self):
        """Test the gdb-remote command in synchronous mode"""
        try:
@@ -16,6 +20,7 @@ class TestProcessConnect(GDBRemoteTestBase):
        finally:
            self.dbg.GetSelectedPlatform().DisconnectRemote()

    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
    def test_gdb_remote_async(self):
        """Test the gdb-remote command in asynchronous mode"""
        try:
@@ -28,6 +33,7 @@ class TestProcessConnect(GDBRemoteTestBase):
        finally:
            self.dbg.GetSelectedPlatform().DisconnectRemote()

    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
    def test_process_connect_sync(self):
        """Test the gdb-remote command in synchronous mode"""
        try:
@@ -38,6 +44,7 @@ class TestProcessConnect(GDBRemoteTestBase):
        finally:
            self.dbg.GetSelectedPlatform().DisconnectRemote()

    @expectedFailureAll(hostoslist=["windows"], triple='.*-android')
    def test_process_connect_async(self):
        """Test the gdb-remote command in asynchronous mode"""
        try: