Author: Adrian Prantl
Date: 2022-08-19T09:23:18-07:00
New Revision: fe0f72d5c55a9b95c5564089e946e8f08112e995

URL: 
https://github.com/llvm/llvm-project/commit/fe0f72d5c55a9b95c5564089e946e8f08112e995
DIFF: 
https://github.com/llvm/llvm-project/commit/fe0f72d5c55a9b95c5564089e946e8f08112e995.diff

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

This reverts commit 7aadecae404b8d47aabdd874e9018a76fd4d1ffa.

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/

Added: 
    

Modified: 
    lldb/test/API/functionalities/gdb_remote_client/TestContinue.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py 
b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
index 8d26cfbfdcc4e..f0f0df81d321d 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
@@ -38,8 +38,6 @@ def qfThreadInfo(self):
         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 @@ def other(self, packet):
         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 MyResponder(self.BaseResponder):
         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"])


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to