summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/functionalities/gdb_remote_client/TestContinue.py')
-rw-r--r--lldb/test/API/functionalities/gdb_remote_client/TestContinue.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
index 3af4ca859f86..67f0783167a3 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
@@ -41,7 +41,7 @@ class TestContinue(GDBRemoteTestBase):
lldbutil.expect_state_changes(
self, self.dbg.GetListener(), process, [lldb.eStateExited]
)
- self.assertPacketLogContains(["vCont;C13:401"])
+ self.assertPacketLogReceived(["vCont;C13:401"])
def test_continue_no_vCont(self):
class MyResponder(self.BaseResponder):
@@ -61,7 +61,7 @@ class TestContinue(GDBRemoteTestBase):
lldbutil.expect_state_changes(
self, self.dbg.GetListener(), process, [lldb.eStateExited]
)
- self.assertPacketLogContains(["Hc401", "C13"])
+ self.assertPacketLogReceived(["Hc401", "C13"])
def test_continue_multiprocess(self):
class MyResponder(self.BaseResponder):
@@ -74,4 +74,4 @@ class TestContinue(GDBRemoteTestBase):
lldbutil.expect_state_changes(
self, self.dbg.GetListener(), process, [lldb.eStateExited]
)
- self.assertPacketLogContains(["vCont;C13:p400.401"])
+ self.assertPacketLogReceived(["vCont;C13:p400.401"])