Fix for test cases to make sure memcached is around.
[m6w6/libmemcached] / tests / memtouch.cc
index fa65e8b413ff85c25437eb5efbc249cda6435fe2..647485e44e9119964063b5f65f0c97c317479885 100644 (file)
@@ -139,7 +139,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;
@@ -157,7 +157,6 @@ static void *world_create(server_startup_st& servers, test_return_t& error)
 void get_world(Framework *world)
 {
   executable= "./clients/memtouch";
-  world->collections= collection;
-  world->_create= world_create;
+  world->collections(collection);
+  world->create(world_create);
 }
-