[master] 23a6efe36 Make the out-of-workspace tests for STRANDS robust for 32-bit.

Geoff Simmons geoff at uplex.de
Mon Aug 13 08:51:08 UTC 2018


commit 23a6efe3624bd9297f16a4be11b7ef7f4a00efb7
Author: Geoff Simmons <geoff at uplex.de>
Date:   Mon Aug 13 10:49:45 2018 +0200

    Make the out-of-workspace tests for STRANDS robust for 32-bit.

diff --git a/bin/varnishtest/tests/v00058.vtc b/bin/varnishtest/tests/v00058.vtc
index d76e3d397..bb6aa869a 100644
--- a/bin/varnishtest/tests/v00058.vtc
+++ b/bin/varnishtest/tests/v00058.vtc
@@ -117,7 +117,6 @@ server s1 {
 	expect req.http.Bar == "bar"
 	expect req.http.Baz == "baz"
 	expect req.http.Quux == "quux"
-	expect req.http.Result == <undef>
 	txresp
 } -start
 
@@ -155,13 +154,13 @@ varnish v1 -vcl+backend {
 client c1 {
 	txreq -url "/1"
 	rxresp
-	expect resp.status == 500
-	expect resp.reason == "Internal Server Error"
+	expect resp.status >= 500
+	expect resp.status <= 503
 } -run
 
 client c1 {
 	txreq -url "/2"
 	rxresp
-	expect resp.status == 503
-	expect resp.reason == "VCL failed"
+	expect resp.status >= 500
+	expect resp.status <= 503
 } -run


More information about the varnish-commit mailing list