(msg)
| 213 | |
| 214 | def wait_for_suspend(): |
| 215 | def accept_message(msg): |
| 216 | if msg.startswith("%s\t" % CMD_GET_BREAKPOINT_EXCEPTION) or ('stop_reason="%s"' % REASON_STOP_ON_BREAKPOINT) in msg: |
| 217 | return True |
| 218 | return False |
| 219 | |
| 220 | # Order is not guaranteed. |
| 221 | msg1 = writer.wait_for_message(accept_message) |
no outgoing calls
no test coverage detected