Lines Matching refs:r
53 r = curl.http_download(urls=[urln], alpn_proto=proto)
54 r.check_response(count=count, http_status=200)
58 assert (count/2 - delta) < r.total_connects < (count/2 + delta)
73 r = curl.http_download(urls=[urln], alpn_proto=proto, extra_args=[
76 r.check_response(count=count, http_status=200)
78 assert r.total_connects == count
94 r = curl.http_download(urls=[urln], with_stats=True, extra_args=[
97 r.check_response(count=count, http_status=200)
99 assert r.total_connects == 1
100 for s in r.stats:
116 r = curl.http_download(urls=[urln], with_stats=True, extra_args=[
119 r.check_response(count=count, http_status=200)
121 assert r.total_connects == 1
122 for s in r.stats:
138 r = curl.http_download(urls=[urln], with_stats=True, extra_args=[
141 r.check_response(count=count, http_status=200)
143 assert r.total_connects == 1
146 for s in r.stats: