Fix for test cases to make sure memcached is around.
[m6w6/libmemcached] / tests / memstat.cc
index ae8679fb13d47bc30fd8f63336e9b7cdd8ede2ee..b6053aeb20723da525e05e1345b56ed7b8ccf1ae 100644 (file)
@@ -107,7 +107,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;
@@ -124,7 +124,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);
 }