Commit 557aff1d authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix these testcases to fail for the right reason.

parent 2a29afdb
...@@ -30,14 +30,14 @@ client c1 { ...@@ -30,14 +30,14 @@ client c1 {
} -run } -run
varnish v1 -badvcl { varnish v1 -badvcl {
import debug from "${topbuild}/lib/libvmod_debug/.libs/libvmod_debug.so.1" ; import debug from "${topbuild}/lib/libvmod_debug/.libs/libvmod_debug.so" ;
sub vcl_deliver { sub vcl_deliver {
set resp.http.who = debug.author(jfk); set resp.http.who = debug.author(jfk);
} }
} }
varnish v1 -badvcl { varnish v1 -badvcl {
import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so.1" ; import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so" ;
sub vcl_deliver { sub vcl_deliver {
set resp.http.who = std.random("foo", "bar"); set resp.http.who = std.random("foo", "bar");
} }
......
...@@ -48,12 +48,12 @@ varnish v1 -cliok "vcl.list" ...@@ -48,12 +48,12 @@ varnish v1 -cliok "vcl.list"
varnish v1 -cliok "debug.vmod" varnish v1 -cliok "debug.vmod"
varnish v1 -badvcl { varnish v1 -badvcl {
import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so.1" ; import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so" ;
import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so.1" ; import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so" ;
} }
varnish v1 -badvcl { varnish v1 -badvcl {
import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so.1" ; import std from "${topbuild}/lib/libvmod_std/.libs/libvmod_std.so" ;
sub vcl_recv { sub vcl_recv {
if (std == 2) { if (std == 2) {
......
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