Commit 29db5c9a authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add a H1 testcase which exercises the single like of code which

triggers this bug for H2.  (H2 will be added to the testcase as part
of the fix.)
parent d87dcf17
varnishtest "Streaming range premature finish"
server s1 {
non_fatal
rxreq
txresp -nolen -hdr "Content-length: 9"
delay 1
send "BLA"
delay .4
send "BLA"
delay .3
send "BL"
} -start
varnish v1 -vcl+backend { } -start
client c1 {
txreq -hdr "range: bytes=0-16"
rxresp -no_obj
expect resp.status == 206
expect resp.http.content-length == 9
recv 8
expect_close
} -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment