Revert "[lldb] [test] Add synchronization to TestContinue"

This reverts commit 7aadecae40.

I'm reverting this commit because it appears to break the green dragon
incremental LLDB bot.

https://reviews.llvm.org/D131758

See LLDB Incremental buildbot: https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/46215/execution/node/70/log/
This commit is contained in:
Adrian Prantl 2022-08-19 09:22:19 -07:00
parent 00c4852561
commit fe0f72d5c5
1 changed files with 0 additions and 6 deletions

View File

@ -38,8 +38,6 @@ class TestContinue(GDBRemoteTestBase):
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)
lldbutil.expect_state_changes(self, self.dbg.GetListener(), process,
[lldb.eStateExited])
self.assertPacketLogContains(["vCont;C13:401"])
def test_continue_no_vCont(self):
@ -57,8 +55,6 @@ class TestContinue(GDBRemoteTestBase):
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)
lldbutil.expect_state_changes(self, self.dbg.GetListener(), process,
[lldb.eStateExited])
self.assertPacketLogContains(["Hc401", "C13"])
def test_continue_multiprocess(self):
@ -69,6 +65,4 @@ class TestContinue(GDBRemoteTestBase):
self.runCmd("platform select remote-linux")
target = self.createTarget("a.yaml")
process = self.connect(target)
lldbutil.expect_state_changes(self, self.dbg.GetListener(), process,
[lldb.eStateExited])
self.assertPacketLogContains(["vCont;C13:p400.401"])