X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmem_udp.cc;h=077f8c99815f7a9c24f437a4c8c1a18d49d32d2c;hb=d3e39fdf907d5f82e3f378d52f27bdc13e3eb891;hp=8153e8ef074f3c167adcf1ce9497fcfc3cdebc10;hpb=ecc7382f48857cb22e74ffa9496f9a31e956bde3;p=awesomized%2Flibmemcached diff --git a/tests/mem_udp.cc b/tests/mem_udp.cc index 8153e8ef..077f8c99 100644 --- a/tests/mem_udp.cc +++ b/tests/mem_udp.cc @@ -10,9 +10,14 @@ Sample test application. */ -#include "config.h" +#include +#include + +using namespace libtest; -#include "libmemcached/common.h" +#include +#include +#include #include #include @@ -27,9 +32,6 @@ #include #include -#include - -#define SERVERS_TO_CREATE 5 #ifndef __INTEL_COMPILER #pragma GCC diagnostic ignored "-Wstrict-aliasing" @@ -487,8 +489,7 @@ collection_st collection[] ={ {0, 0, 0, 0} }; -#define SERVERS_TO_CREATE 5 - +#define TEST_PORT_BASE MEMCACHED_DEFAULT_PORT +10 #include "libmemcached_world.h" void get_world(Framework *world) @@ -496,7 +497,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; @@ -507,5 +508,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); }