[Varnish] #1520: m00011.vtc fails on x86_64

Varnish varnish-bugs at varnish-cache.org
Wed Jun 11 04:41:05 CEST 2014


#1520: m00011.vtc fails on x86_64
-------------------------+------------------------
 Reporter:  yoloseem     |       Owner:
     Type:  defect       |      Status:  Need info
 Priority:  normal       |   Milestone:
Component:  varnishtest  |     Version:  4.0.0
 Severity:  normal       |  Resolution:
 Keywords:               |
-------------------------+------------------------

Comment (by yoloseem):

 Yes. All test suites excepting m00011.vtc pass well and m00011.vtc always
 fails.

 Since the test contains below:

 {{{
 varnishtest "Test std.ip"


 server s1 {
         rxreq
         txresp -body "1"
 } -start


 varnish v1 -vcl+backend {

         import ${vmod_std};
         sub vcl_deliver {
                 set resp.http.foo0 = std.ip("8.8.8.*", client.ip);
                 set resp.http.foo1 = std.ip("9.9.9.*", server.ip);
                 set resp.http.foo2 = std.ip("1.2.3.*", "127.0.0.2");
                 set resp.http.foo3 = std.ip("1.2.3.5", "127.0.0.3");
         }
 } -start

 client c1 {
         txreq -url "/foo1"
         rxresp
         expect resp.http.foo0 == "127.0.0.1"
         expect resp.http.foo1 == "127.0.0.1"
         expect resp.http.foo2 == "127.0.0.2"
         expect resp.http.foo3 == "1.2.3.5"
 } -run
 }}}

 If I left only a line about foo3, then it passes.

-- 
Ticket URL: <https://www.varnish-cache.org/trac/ticket/1520#comment:2>
Varnish <https://varnish-cache.org/>
The Varnish HTTP Accelerator



More information about the varnish-bugs mailing list