Home | History | Annotate | Download | only in test

Lines Matching refs:expect_success

2022     def try_protocol_combo(server_protocol, client_protocol, expect_success,
2026 If *expect_success* is true, assert that the connection succeeds,
2028 Also, if *expect_success* is a string, assert that it is the protocol
2039 formatstr = (expect_success and " %s->%s %s\n") or " {%s->%s} %s\n"
2065 if expect_success:
2068 if expect_success or e.errno != errno.ECONNRESET:
2071 if not expect_success:
2076 elif (expect_success is not True
2077 and expect_success != stats['version']):
2079 % (expect_success, stats['version']))
2588 for meth_name, send_meth, expect_success, args in send_methods:
2604 if expect_success:
2617 for meth_name, recv_meth, expect_success, args in recv_methods:
2633 if expect_success: