X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ffailure.cc;h=d31518ee137d8f2151bda7ece605451ea4a43c5c;hb=1be0350e7ae7a566896a9fe52863dcc22433fc8a;hp=ccc32f392babb256a574ee629e7d174d3069ff52;hpb=65e75d2db2d217b37c94c36d48607cb8425c8f86;p=m6w6%2Flibmemcached diff --git a/tests/failure.cc b/tests/failure.cc index ccc32f39..d31518ee 100644 --- a/tests/failure.cc +++ b/tests/failure.cc @@ -152,7 +152,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 +175,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,7 +207,7 @@ collection_st collection[] ={ { 0, 0, 0, 0 } }; -#include "libmemcached_world.h" +#include "tests/libmemcached_world.h" void get_world(Framework *world) { @@ -218,16 +218,7 @@ void get_world(Framework *world) world->_create= (test_callback_create_fn*)world_create; world->_destroy= (test_callback_destroy_fn*)world_destroy; - world->item._startup= (test_callback_fn*)world_test_startup; - world->item.set_pre((test_callback_fn*)world_pre_run); - world->item.set_flush((test_callback_fn*)world_flush); - world->item.set_post((test_callback_fn*)world_post_run); - world->_on_error= (test_callback_error_fn*)world_on_error; - - world->collection_startup= (test_callback_fn*)world_container_startup; - world->collection_shutdown= (test_callback_fn*)world_container_shutdown; - - world->set_runner(&defualt_libmemcached_runner); + world->set_runner(new LibmemcachedRunner); global_framework= world; }