X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcat.cc;h=abbee9e718db3f98c5b4130246f0a9a09ff64182;hb=9a58df7803d815ca6be695c5fc38469da099620f;hp=e51cdce1451e235e944b626a97cc269cd9d8dc0e;hpb=c6581942a9f3089c1d14e2cbc749d47a93247e78;p=awesomized%2Flibmemcached diff --git a/tests/memcat.cc b/tests/memcat.cc index e51cdce1..abbee9e7 100644 --- a/tests/memcat.cc +++ b/tests/memcat.cc @@ -39,10 +39,10 @@ Test that we are cycling the servers we are creating during testing. */ -#include +#include #include -#include +#include using namespace libtest; @@ -126,7 +126,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; @@ -141,9 +141,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); }