(self, timeout=10)
| 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 | |
| 418 | def fifo_name_path(test_env, name): |
no test coverage detected