Commit 795a5568 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Coverage of new multi-token error messages.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5141 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 1c12c58a
......@@ -54,3 +54,34 @@ varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
?
}
varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
sub vcl_recv {
if ("foo" + "bar" == 777) {
set req.http.host = 1;
}
}
}
varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
sub vcl_recv {
if ("foo" + "bar" ==
777) {
set req.http.host = 1;
}
}
}
varnish v1 -badvcl {
backend b { .host = "127.0.0.1"; }
sub vcl_recv {
if ("foo" + "bar" ==
777) {
set req.http.host = 1;
}
}
}
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