[master] e9cb3ae Remove this testcase, it is no longer relevant.

Poul-Henning Kamp phk at varnish-cache.org
Mon May 6 13:05:03 CEST 2013


commit e9cb3ae22ef6a0bb030891d15447d81afd5a512a
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Mon May 6 09:45:44 2013 +0000

    Remove this testcase, it is no longer relevant.

diff --git a/bin/varnishtest/tests/r01253.vtc b/bin/varnishtest/tests/r01253.vtc
deleted file mode 100644
index ce348ae..0000000
--- a/bin/varnishtest/tests/r01253.vtc
+++ /dev/null
@@ -1,26 +0,0 @@
-varnishtest "restarting a pass in vcl_backend_response should not panic"
-
-server s1 {
-	rxreq
-	txresp -status 304 -body "1234"
-	accept
-	rxreq
-	txresp -status 200 -body "56"
-} -start
-
-varnish v1 -vcl+backend {
-	sub vcl_recv {
-		return (pass);
-	}
-	sub vcl_backend_response {
-		if (beresp.status != 200) {
-			return (restart);
-		}
-	}
-} -start
-
-client c1 {
-	txreq 
-	rxresp
-	expect resp.bodylen == 2
-} -run



More information about the varnish-commit mailing list