X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemslap.cc;h=c150082978a0ce971d87372a182748603b7188c2;hb=31048f6090b7c82605d2bbf7653d9884a14fe45b;hp=6f990af498d9c81d7bfa79c5c9e878e334c482f2;hpb=1d6aaf09ebb2aafad07307f736d7bab6fdb79d2c;p=awesomized%2Flibmemcached diff --git a/tests/memslap.cc b/tests/memslap.cc index 6f990af4..c1500829 100644 --- a/tests/memslap.cc +++ b/tests/memslap.cc @@ -167,7 +167,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; @@ -183,10 +183,10 @@ static void *world_create(server_startup_st& servers, test_return_t& error) } -void get_world(Framework *world) +void get_world(libtest::Framework* world) { executable= "./clients/memslap"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }