Commit e7be38e2 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Be more careful about concurrency.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3093 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 6ad74153
......@@ -29,7 +29,7 @@ client c1 {
expect resp.status == 200
expect resp.http.content-length == 6
expect resp.http.x-varnish == "1001"
} -start
} -run
varnish v1 -cli "vcl.use vcl2"
......@@ -39,7 +39,7 @@ client c2 {
expect resp.status == 200
expect resp.http.content-length == 7
expect resp.http.x-varnish == "1002"
} -start
} -run
varnish v1 -cli "vcl.use vcl1"
......@@ -49,7 +49,7 @@ client c3 {
expect resp.status == 200
expect resp.http.content-length == 6
expect resp.http.x-varnish == "1003 1001"
} -start
} -run
varnish v1 -cli "vcl.show vcl2"
varnish v1 -cli "vcl.discard vcl2"
......
......@@ -62,7 +62,7 @@ varnish v1 -expect n_vcl_discard == 1
client c1 {
txreq -url /foo
rxresp
} -start
} -run
# The workthread should have released its VCL reference now
# but we need to tickle the CLI to notice
......
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