X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmem_udp.cc;h=846d2bfdea9bbdba3facd0a8dc4be2a0e7b315f4;hb=c5c5f2799a24eac8df5e11f447b48e031299579a;hp=2a82482f9feaca230428cf84b52c2d01a9c4ae5a;hpb=57ccacee54e77955ebe20d52e06934850e182adc;p=m6w6%2Flibmemcached diff --git a/tests/mem_udp.cc b/tests/mem_udp.cc index 2a82482f..846d2bfd 100644 --- a/tests/mem_udp.cc +++ b/tests/mem_udp.cc @@ -10,7 +10,10 @@ Sample test application. */ -#include +#include +#include + +using namespace libtest; #include @@ -495,7 +498,7 @@ void get_world(Framework *world) world->collections= collection; world->_create= (test_callback_create_fn*)world_create; - world->_destroy= (test_callback_fn*)world_destroy; + world->_destroy= (test_callback_destroy_fn*)world_destroy; world->item._startup= (test_callback_fn*)world_test_startup; world->item._flush= (test_callback_fn*)world_flush; @@ -506,5 +509,5 @@ void get_world(Framework *world) world->collection_startup= (test_callback_fn*)world_container_startup; world->collection_shutdown= (test_callback_fn*)world_container_shutdown; - world->runner= &defualt_libmemcached_runner; + world->set_runner(&defualt_libmemcached_runner); }