X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcapable.cc;h=09b47efabaddc2a53e33e83f76f69607cb18cec4;hb=2569efffe16042f47dc5d2c34528a9ec22fc18b0;hp=ae50fefaf95c212d972146c06943d51f31bc6225;hpb=c6581942a9f3089c1d14e2cbc749d47a93247e78;p=awesomized%2Flibmemcached diff --git a/tests/memcapable.cc b/tests/memcapable.cc index ae50fefa..09b47efa 100644 --- a/tests/memcapable.cc +++ b/tests/memcapable.cc @@ -42,7 +42,7 @@ #include #include -#include +#include using namespace libtest; @@ -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; @@ -115,17 +115,17 @@ static void *world_create(server_startup_st& servers, test_return_t& error) if (server_startup(servers, "memcached", libtest::default_port(), 0, NULL) == false) { - error= TEST_FAILURE; + error= TEST_SKIPPED; } return &servers; } -void get_world(Framework *world) +void get_world(libtest::Framework* world) { executable= "./clients/memcapable"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }