X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fmem_udp.cc;h=846d2bfdea9bbdba3facd0a8dc4be2a0e7b315f4;hb=6953f8c1a076b300fe0658a4b82cb835110699d0;hp=650134ade1d5695311ac60d4440c69cf6e9c53de;hpb=c443673eaba8b14b3aa1dce9a7059cd7a41d03e9;p=awesomized%2Flibmemcached diff --git a/tests/mem_udp.cc b/tests/mem_udp.cc index 650134ad..846d2bfd 100644 --- a/tests/mem_udp.cc +++ b/tests/mem_udp.cc @@ -10,9 +10,12 @@ Sample test application. */ -#include "config.h" +#include +#include -#include "libmemcached/common.h" +using namespace libtest; + +#include #include #include @@ -27,7 +30,6 @@ #include #include -#include #define SERVERS_TO_CREATE 5 @@ -491,21 +493,21 @@ collection_st collection[] ={ #include "libmemcached_world.h" -void get_world(world_st *world) +void get_world(Framework *world) { world->collections= collection; - world->create= (test_callback_create_fn*)world_create; - world->destroy= (test_callback_fn*)world_destroy; + world->_create= (test_callback_create_fn*)world_create; + world->_destroy= (test_callback_destroy_fn*)world_destroy; - world->run_startup= (test_callback_fn*)world_test_startup; - world->flush= (test_callback_fn*)world_flush; - world->pre_run= (test_callback_fn*)world_pre_run; - world->post_run= (test_callback_fn*)world_post_run; - world->on_error= (test_callback_error_fn*)world_on_error; + world->item._startup= (test_callback_fn*)world_test_startup; + world->item._flush= (test_callback_fn*)world_flush; + world->item.set_pre((test_callback_fn*)world_pre_run); + world->item.set_post((test_callback_fn*)world_post_run); + world->_on_error= (test_callback_error_fn*)world_on_error; 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); }