X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcp.cc;h=3c8d6b0238289243397322f36d021f2e4aba32ee;hb=2569efffe16042f47dc5d2c34528a9ec22fc18b0;hp=eab8cfa58a7d946d9b0d9c229404300a89e0cbed;hpb=b43d7591dbe31dedd9fed41f01d07e8a3412582b;p=awesomized%2Flibmemcached diff --git a/tests/memcp.cc b/tests/memcp.cc index eab8cfa5..3c8d6b02 100644 --- a/tests/memcp.cc +++ b/tests/memcp.cc @@ -42,7 +42,7 @@ #include #include -#include +#include using namespace libtest; @@ -85,7 +85,7 @@ 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; @@ -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); }