X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ffailure.cc;h=016ea5e445e12b84ff12945a482d08049ad565c4;hb=9ad3090b40fabae0ccc1b3e156bfc84c4c62d47d;hp=cfee6cb7783da3142a950ff957a403841368ea0f;hpb=687c311bc11a24b61c15eb9f5c081a97e8501df0;p=m6w6%2Flibmemcached diff --git a/tests/failure.cc b/tests/failure.cc index cfee6cb7..016ea5e4 100644 --- a/tests/failure.cc +++ b/tests/failure.cc @@ -98,6 +98,7 @@ static test_return_t restart_servers(memcached_st *) return TEST_SUCCESS; } +#include "libmemcached/instance.h" static test_return_t cull_TEST(memcached_st *memc) { uint32_t count= memcached_server_count(memc); @@ -152,7 +153,7 @@ static test_return_t MEMCACHED_SERVER_TEMPORARILY_DISABLED_to_success_TEST(memca memcached_return_t ret; do { - sleep(3); + libtest::dream(3, 0); ret= memcached_set(memc, test_literal_param("foo"), NULL, 0, time_t(0), uint32_t(0)); } while (ret == MEMCACHED_SERVER_TEMPORARILY_DISABLED); @@ -175,7 +176,7 @@ static test_return_t MEMCACHED_SERVER_MARKED_DEAD_TEST(memcached_st *memc) test_compare(MEMCACHED_SERVER_TEMPORARILY_DISABLED, ret); do { - sleep(3); + libtest::dream(3, 0); ret= memcached_set(memc, test_literal_param("foo"), NULL, 0, time_t(0), uint32_t(0)); } while (ret == MEMCACHED_SERVER_TEMPORARILY_DISABLED or ret == MEMCACHED_SUCCESS); @@ -207,16 +208,16 @@ collection_st collection[] ={ { 0, 0, 0, 0 } }; -#include "libmemcached_world.h" +#include "tests/libmemcached_world.h" void get_world(Framework *world) { world->servers().set_servers_to_run(1); - world->collections= collection; + world->collections(collection); - world->_create= (test_callback_create_fn*)world_create; - world->_destroy= (test_callback_destroy_fn*)world_destroy; + world->create((test_callback_create_fn*)world_create); + world->destroy((test_callback_destroy_fn*)world_destroy); world->set_runner(new LibmemcachedRunner);