Commit 7bbd6013 authored by Geoff Simmons's avatar Geoff Simmons Committed by Dridi Boukelmoune

Fix the out-of-workspace tests for VMOD blob.

The error may be status 500 on 32-bit systems.
parent 4086c5d6
......@@ -39,27 +39,31 @@ varnish v1 -vcl {
client c1 {
txreq -url "/1"
rxresp
expect resp.status == 503
expect resp.reason == "VCL failed"
expect resp.status >= 500
expect resp.status <= 503
expect resp.reason ~ {(?i)^VCL Failed$|^Internal Server Error$}
} -run
client c1 {
txreq -url "/2"
rxresp
expect resp.status == 503
expect resp.reason == "VCL failed"
expect resp.status >= 500
expect resp.status <= 503
expect resp.reason ~ {(?i)^VCL Failed$|^Internal Server Error$}
} -run
client c1 {
txreq -url "/3"
rxresp
expect resp.status == 503
expect resp.reason == "VCL failed"
expect resp.status >= 500
expect resp.status <= 503
expect resp.reason ~ {(?i)^VCL Failed$|^Internal Server Error$}
} -run
client c1 {
txreq -url "/4"
rxresp
expect resp.status == 503
expect resp.reason == "VCL failed"
expect resp.status >= 500
expect resp.status <= 503
expect resp.reason ~ {(?i)^VCL Failed$|^Internal Server Error$}
} -run
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment