X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemtouch.cc;h=5293ce8e435ea3f4e526923ed71f5efa588fdf1e;hb=d86bfe0802400ad5ebc14a72941d8528a0f795b9;hp=fa65e8b413ff85c25437eb5efbc249cda6435fe2;hpb=c6581942a9f3089c1d14e2cbc749d47a93247e78;p=awesomized%2Flibmemcached diff --git a/tests/memtouch.cc b/tests/memtouch.cc index fa65e8b4..5293ce8e 100644 --- a/tests/memtouch.cc +++ b/tests/memtouch.cc @@ -39,11 +39,11 @@ Test that we are cycling the servers we are creating during testing. */ -#include +#include #include -#include -#include +#include +#include using namespace libtest; @@ -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; @@ -147,17 +147,16 @@ 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/memtouch"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); } -