X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcp.cc;h=590f1af3b563a442a2e99aa478667e8c57fbf51d;hb=ab130c459a975d24628169901addb191ef2cdf87;hp=eab8cfa58a7d946d9b0d9c229404300a89e0cbed;hpb=c6581942a9f3089c1d14e2cbc749d47a93247e78;p=m6w6%2Flibmemcached diff --git a/tests/memcp.cc b/tests/memcp.cc index eab8cfa5..590f1af3 100644 --- a/tests/memcp.cc +++ b/tests/memcp.cc @@ -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; @@ -102,7 +102,7 @@ static void *world_create(server_startup_st& servers, test_return_t& error) void get_world(Framework *world) { - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }