Mailing List Archive

r3352 - trunk/varnish-cache/bin/varnishtest/tests
Author: sky
Date: 2008-10-27 01:36:04 +0100 (Mon, 27 Oct 2008)
New Revision: 3352

Modified:
trunk/varnish-cache/bin/varnishtest/tests/v00017.vtc
Log:
merge #3350 into trunk -- make tests fail if you have a long and correct search list; which my laptop has

Modified: trunk/varnish-cache/bin/varnishtest/tests/v00017.vtc
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/v00017.vtc 2008-10-27 00:22:38 UTC (rev 3351)
+++ trunk/varnish-cache/bin/varnishtest/tests/v00017.vtc 2008-10-27 00:36:04 UTC (rev 3352)
@@ -34,7 +34,7 @@

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 @@
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; } }
}