Commit 66bc2367 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Expect X-Varnish to show the correct XIDs



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2734 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent c923b6bf
......@@ -9,7 +9,7 @@ server s1 {
-body "012345\n"
}
varnish v1 -vcl+backend { } -start
varnish v1 -vcl+backend { } -start
server s1 -start
......@@ -17,7 +17,15 @@ client c1 {
txreq -url "/"
rxresp
expect resp.status == 200
expect resp.http.X-Varnish == "1001"
}
client c2 {
txreq -url "/"
rxresp
expect resp.status == 200
expect resp.http.X-Varnish == "1002 1001"
}
client c1 -run
client c1 -run
client c2 -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