[master] 1c86cf44c This test no longer serves any purpose.

Poul-Henning Kamp phk at FreeBSD.org
Wed Mar 24 12:14:04 UTC 2021


commit 1c86cf44ce2b157f7da1b27e2f82c8d6fe9bf713
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed Mar 24 12:13:00 2021 +0000

    This test no longer serves any purpose.

diff --git a/bin/varnishtest/tests/r00948.vtc b/bin/varnishtest/tests/r00948.vtc
deleted file mode 100644
index e0d01f2e4..000000000
--- a/bin/varnishtest/tests/r00948.vtc
+++ /dev/null
@@ -1,30 +0,0 @@
-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
-
-


More information about the varnish-commit mailing list