Update to support new warnings.
[m6w6/libmemcached] / tests / memdump.cc
index 4a30892138cbf7f3dade30185672ccedffeb7918..6f9330a536e0d46a2fbd6953eb424ee7ec90e59a 100644 (file)
@@ -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;
@@ -127,9 +127,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);
 }