Commit 1c86cf44 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

This test no longer serves any purpose.

parent a7945656
varnishtest "anon acl numbering"
server s1 {
rxreq
expect req.http.foo1 == "Match"
expect req.http.foo2 == "Match"
txresp -bodylen 40
} -start
varnish v1 -vcl+backend {
sub vcl_recv {
if (client.ip == "${s1_addr}" || client.ip == "${localhost}") {
set req.http.foo1 = "Match";
}
if (client.ip == "${localhost}" || client.ip == "${s1_addr}") {
set req.http.foo2 = "Match";
}
}
} -start
client c1 {
txreq
rxresp
expect resp.bodylen == 40
} -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