X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcat.cc;h=f70da3be2fab0cabeb26a4f2c60fcc846ad37d69;hb=bf755bec1cd09fad086a47650c1a725c9fbc7eb1;hp=e51cdce1451e235e944b626a97cc269cd9d8dc0e;hpb=b43d7591dbe31dedd9fed41f01d07e8a3412582b;p=m6w6%2Flibmemcached diff --git a/tests/memcat.cc b/tests/memcat.cc index e51cdce1..f70da3be 100644 --- a/tests/memcat.cc +++ b/tests/memcat.cc @@ -126,7 +126,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; @@ -143,7 +143,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); }