Commit 6bd3d3ba authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Update this test-case, since it breaks 4.0.3 but not -trunk

parent ec24a171
......@@ -7,12 +7,17 @@ server s1 {
rxreq
expect req.url == "/foo"
txresp -hdr "Content-Encoding: gzip"
rxreq
expect req.url == "/baz"
txresp -gzipbody {<esi:include src="/quux"/>}
rxreq
expect req.url == "/quux"
txresp -status 204 -hdr "Content-Encoding: gzip"
} -start
varnish v1 -vcl+backend {
sub vcl_backend_response {
set beresp.do_esi = true;
set beresp.do_gzip = true;
}
} -start
......@@ -20,4 +25,7 @@ client c1 {
txreq -url /bar -hdr "Accept-Encoding: gzip"
rxresp
expect resp.status == 200
txreq -url /baz -hdr "Accept-Encoding: gzip"
rxresp
expect resp.status == 200
} -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