[master] 49a42aa These three tests depend on not running with streaming

Poul-Henning Kamp phk at varnish-cache.org
Thu May 3 09:43:03 CEST 2012


commit 49a42aa16e7cf1762df69c4709c1ae35bcac969a
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu May 3 07:37:50 2012 +0000

    These three tests depend on not running with streaming

diff --git a/bin/varnishtest/tests/r00702.vtc b/bin/varnishtest/tests/r00702.vtc
index a96624e..5075c16 100644
--- a/bin/varnishtest/tests/r00702.vtc
+++ b/bin/varnishtest/tests/r00702.vtc
@@ -6,6 +6,9 @@ server s1 {
 } -start
 
 varnish v1 -vcl+backend {
+	sub vcl_fetch {
+		set beresp.do_stream = false;
+	}
 } -start
 
 varnish v1 -cliok "param.set http_range_support on"
diff --git a/bin/varnishtest/tests/r00704.vtc b/bin/varnishtest/tests/r00704.vtc
index 5ee5702..806fc82 100644
--- a/bin/varnishtest/tests/r00704.vtc
+++ b/bin/varnishtest/tests/r00704.vtc
@@ -6,6 +6,9 @@ server s1 {
 } -start
 
 varnish v1 -vcl+backend {
+	sub vcl_fetch {
+		set beresp.do_stream = false;
+	}
 } -start
 
 varnish v1 -cliok "param.set http_range_support on"
diff --git a/bin/varnishtest/tests/r00801.vtc b/bin/varnishtest/tests/r00801.vtc
index f6fe5bd..3309f22 100644
--- a/bin/varnishtest/tests/r00801.vtc
+++ b/bin/varnishtest/tests/r00801.vtc
@@ -11,6 +11,9 @@ server s1 {
 
 varnish v1 -vcl+backend {
 	sub vcl_recv { return (pass); }
+	sub vcl_fetch {
+		set beresp.do_stream = false;
+	}
 } -start
 
 client c1 {



More information about the varnish-commit mailing list