Commit 6db04b78 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Add a no_stevedore function for testing

parent 3b9e09fc
......@@ -71,6 +71,10 @@ $Function BACKEND no_backend()
Fails at backend selection
$Function STEVEDORE no_stevedore()
Fails at storage selection.
$Object obj(STRING string="default", ENUM { one, two, three } number="one")
Test object
......
......@@ -184,6 +184,14 @@ vmod_no_backend(VRT_CTX)
return (NULL);
}
VCL_STEVEDORE __match_proto__(td_debug_no_stevedore)
vmod_no_stevedore(VRT_CTX)
{
CHECK_OBJ_NOTNULL(ctx, VRT_CTX_MAGIC);
return (NULL);
}
VCL_VOID __match_proto__(td_debug_rot52)
vmod_rot52(VRT_CTX, VCL_HTTP hp)
{
......
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