X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemdump.cc;h=ac1619c317fbbb1372bb49ecc4e7a3f6dc85e0b4;hb=ab130c459a975d24628169901addb191ef2cdf87;hp=4a30892138cbf7f3dade30185672ccedffeb7918;hpb=7773f76bd15be71f7d1a5579006b786584d3fe26;p=m6w6%2Flibmemcached diff --git a/tests/memdump.cc b/tests/memdump.cc index 4a308921..ac1619c3 100644 --- a/tests/memdump.cc +++ b/tests/memdump.cc @@ -112,7 +112,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; @@ -129,7 +129,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); }