[master] 443f181 Fixes to cope with new body determination code

Poul-Henning Kamp phk at FreeBSD.org
Thu Sep 10 14:51:41 CEST 2015


commit 443f181348853f3a8bc238dc94674b45d13dd5de
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu Sep 10 12:51:05 2015 +0000

    Fixes to cope with new body determination code

diff --git a/bin/varnishtest/tests/r00325.vtc b/bin/varnishtest/tests/r00325.vtc
index fabc001..b9c7a56 100644
--- a/bin/varnishtest/tests/r00325.vtc
+++ b/bin/varnishtest/tests/r00325.vtc
@@ -2,7 +2,7 @@ varnishtest "Check lack of response-string"
 
 server s1 {
 	rxreq
-	send "HTTP/1.1 200 \r\n"
+	send "HTTP/1.0 200 \r\n"
 	send "Connection: close\r\n"
 	send "\r\n"
 	send "\r\n"
@@ -20,7 +20,7 @@ client c1 {
 
 server s1 {
 	rxreq
-	send "HTTP/1.1 200\r\n"
+	send "HTTP/1.0 200\r\n"
 	send "Connection: close\r\n"
 	send "\r\n"
 	send "\r\n"
diff --git a/bin/varnishtest/tests/r01729.vtc b/bin/varnishtest/tests/r01729.vtc
index a01bab2..a7782d8 100644
--- a/bin/varnishtest/tests/r01729.vtc
+++ b/bin/varnishtest/tests/r01729.vtc
@@ -20,6 +20,7 @@ varnish v1 -vcl+backend { } -start
 
 client c1 {
 
+	non-fatal
 	send "PUT /1 HTTP/1.1\r\n"
 	send "Content-Length: 31\r\n"
 	send "Transfer-Encoding: chunked\r\n"
@@ -35,7 +36,7 @@ client c1 {
 } -run
 
 client c1 {
-
+	fatal
 	send "PUT /2 HTTP/1.1\r\n"
 	send "Transfer-Encoding: chunked\r\n"
 	send "\r\n"



More information about the varnish-commit mailing list