From 3a9cd6f738620a30a938ccfa68959f586589c86e Mon Sep 17 00:00:00 2001 From: sky Date: Mon, 27 Oct 2008 00:36:04 +0000 Subject: [PATCH] merge #3350 into trunk -- make tests fail if you have a long and correct search list; which my laptop has git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3352 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishtest/tests/v00017.vtc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/varnish-cache/bin/varnishtest/tests/v00017.vtc b/varnish-cache/bin/varnishtest/tests/v00017.vtc index c79211d5..d0ab7591 100644 --- a/varnish-cache/bin/varnishtest/tests/v00017.vtc +++ b/varnish-cache/bin/varnishtest/tests/v00017.vtc @@ -34,7 +34,7 @@ varnish v1 -badvcl { varnish v1 -badvcl { backend b { .host = "127.0.0.1"; } - acl a { "en.lille.nisse.rejste"; } + acl a { "en.lille.nisse.rejste."; } sub vcl_recv { if (client.ip ~ a) { pass; } } } @@ -60,8 +60,8 @@ varnish v1 -vcl { backend b { .host = "127.0.0.1"; } acl a { ! "10.1.3"; - ("en.lille.nisse.rejste" / 22); - (!"en.lille.nisse.rejste"); + ("en.lille.nisse.rejste." / 22); + (!"en.lille.nisse.rejste."); } sub vcl_recv { if (client.ip ~ a) { pass; } } } -- 2.39.5