X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcp.cc;h=440f1b1dec8a41a07a6ed1a15d05b7b037a3b75b;hb=53418c8467e0e0845e8f9875fccf05a6cc5a4684;hp=eab8cfa58a7d946d9b0d9c229404300a89e0cbed;hpb=7773f76bd15be71f7d1a5579006b786584d3fe26;p=m6w6%2Flibmemcached diff --git a/tests/memcp.cc b/tests/memcp.cc index eab8cfa5..440f1b1d 100644 --- a/tests/memcp.cc +++ b/tests/memcp.cc @@ -39,10 +39,10 @@ Test that we are cycling the servers we are creating during testing. */ -#include +#include #include -#include +#include using namespace libtest; @@ -85,13 +85,13 @@ collection_st collection[] ={ static void *world_create(server_startup_st& servers, test_return_t& error) { - if (HAVE_MEMCACHED_BINARY == 0) + if (libtest::has_memcached() == false) { error= TEST_SKIPPED; return NULL; } - if (server_startup(servers, "memcached", libtest::default_port(), 0, NULL) == false) + if (server_startup(servers, "memcached", libtest::default_port(), NULL) == false) { error= TEST_FAILURE; } @@ -100,9 +100,9 @@ static void *world_create(server_startup_st& servers, test_return_t& error) } -void get_world(Framework *world) +void get_world(libtest::Framework* world) { - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }