Lines Matching refs:r
61 r = curl.http_download(urls=[url], alpn_proto=proto, with_tcpdump=True, extra_args=[
64 r.check_response(http_status=200, count=2)
65 assert r.tcpdump
66 assert len(r.tcpdump.stats) != 0, f'Expected TCP RSTs packets: {r.tcpdump.stderr}'
79 r = curl.http_download(urls=[url], alpn_proto=proto, with_tcpdump=True, extra_args=[
82 r.check_response(http_status=200, count=2)
83 assert r.tcpdump
84 assert len(r.tcpdump.stats) == 0, 'Unexpected TCP RSTs packets'
98 r = curl.http_download(urls=[url], alpn_proto=proto)
99 r.check_response(http_status=200, count=count)
100 shutdowns = [line for line in r.trace_lines
101 if re.match(r'.*CCACHE\] shutdown #\d+, done=1', line)]
119 r = client.run(args=[
122 r.check_exit_code(0)
123 shutdowns = [line for line in r.trace_lines
124 if re.match(r'.*CCACHE\] shutdown #\d+, done=1', line)]
143 r = curl.http_download(urls=[url], alpn_proto=proto, extra_args=[
146 r.check_response(http_status=200, count=count)
148 closings = [line for line in r.trace_lines
149 if re.match(r'.*CCACHE\] closing #\d+', line)]
152 removes = [line for line in r.trace_lines
153 if re.match(r'.*socket cb: socket \d+ REMOVED', line)]
168 r = curl.http_download(urls=[url], alpn_proto=proto, with_tcpdump=True, extra_args=[
171 r.check_response(http_status=200, count=2)
173 shutdowns = [line for line in r.trace_lines
174 if re.match(r'.*CCACHE\] shutdown #\d+, done=1', line)]