Remove the check for eStateConnected in remote testing sessions.

This check is clearly incorrect, there's no way you should have an
eStateConnected event left on the queue if you've already launched
and hit a breakpoint in the program.  This check fails running remotely
on Darwin systems and on one remote Linux platform.  And if we do
find this failing somewhere, we should fix the bogus eStateConnected,
not the test.
This commit is contained in:
Jim Ingham 2022-08-04 09:14:45 -07:00
parent 7d7a712c98
commit b06da9c183
1 changed files with 0 additions and 4 deletions

View File

@ -70,10 +70,6 @@ class SendSignalTestCase(TestBase):
# Now continue:
process.Continue()
# If running remote test, there should be a connected event
if lldb.remote_platform:
self.match_state(process_listener, lldb.eStateConnected)
self.match_state(process_listener, lldb.eStateRunning)
# Now signal the process, and make sure it stops: