X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ffailure.cc;h=d31518ee137d8f2151bda7ece605451ea4a43c5c;hb=1be0350e7ae7a566896a9fe52863dcc22433fc8a;hp=cbc165e0c7d1a2b3f1d0210425cdb203b3205c47;hpb=c69776b7cf0d0c26b07abd83da8a797182ff6fae;p=m6w6%2Flibmemcached diff --git a/tests/failure.cc b/tests/failure.cc index cbc165e0..d31518ee 100644 --- a/tests/failure.cc +++ b/tests/failure.cc @@ -63,6 +63,8 @@ Framework *global_framework= NULL; static test_return_t shutdown_servers(memcached_st *memc) { + test_skip_valgrind(); + test_compare(memcached_server_count(memc), 1U); // Disable a single server, just the first @@ -73,12 +75,13 @@ static test_return_t shutdown_servers(memcached_st *memc) static test_return_t add_shutdown_servers(memcached_st *memc) { + test_skip_valgrind(); + while (memcached_server_count(memc) < 2) { const char *argv[1]= { "add_shutdown_server" }; - in_port_t port= max_port() +1; - test_true(global_framework->servers().start_socket_server("memcached", port, 1, argv)); - test_compare(MEMCACHED_SUCCESS, memcached_server_add(memc, "localhost", port)); + test_true(global_framework->servers().start_socket_server("memcached", libtest::default_port(), 1, argv)); + test_compare(MEMCACHED_SUCCESS, memcached_server_add(memc, "localhost", libtest::default_port())); } // Disable a single server, just the first @@ -149,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); @@ -172,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); @@ -204,28 +207,18 @@ collection_st collection[] ={ { 0, 0, 0, 0 } }; -#define TEST_PORT_BASE MEMCACHED_DEFAULT_PORT +10 -#include "libmemcached_world.h" +#include "tests/libmemcached_world.h" void get_world(Framework *world) { - world->servers().set_count(1); + world->servers().set_servers_to_run(1); world->collections= collection; 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; }