MCPcopy Create free account
hub / github.com/ddnet/ddnet / wait_for_exit

Method wait_for_exit

scripts/integration_test.py:410–415  ·  view source on GitHub ↗
(self, timeout=10)

Source from the content-addressed store, hash-verified

408 self.wait_for_log(lambda l: l.line == line, description=f"log line exactly matching `{line}`", timeout=timeout)
409
410 def wait_for_exit(self, timeout=10):
411 timeout_id = self.register_timeout(timeout, "exit")
412 while True:
413 event = self.next_event(timeout_id)
414 if isinstance(event, Exit):
415 return
416
417
418def fifo_name_path(test_env, name):

Callers 12

meta_timeoutFunction · 0.80
meta_test_timeoutFunction · 0.80
start_serverFunction · 0.80
start_clientFunction · 0.80
client_can_connectFunction · 0.80
client_can_connect_7Function · 0.80
open_editorFunction · 0.80
smoke_testFunction · 0.80
start_mastersrvFunction · 0.80
server_can_registerFunction · 0.80

Calls 2

register_timeoutMethod · 0.95
next_eventMethod · 0.95

Tested by

no test coverage detected