X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Flibmemcached-1.0%2Fall_tests.cc;h=74c195d24825707b583b2b5a6f1a1352de76d665;hb=8064f17f2e4401c747905800ecaf71e86f853349;hp=5aa59f8852e048b098ea8ade94a651b4d4b3947b;hpb=1857b8b7b9c015f917a05e2e1f75c31253855c90;p=awesomized%2Flibmemcached diff --git a/tests/libmemcached-1.0/all_tests.cc b/tests/libmemcached-1.0/all_tests.cc index 5aa59f88..74c195d2 100644 --- a/tests/libmemcached-1.0/all_tests.cc +++ b/tests/libmemcached-1.0/all_tests.cc @@ -35,8 +35,6 @@ * */ -#define TEST_PORT_BASE MEMCACHED_DEFAULT_PORT +10 - #include #include @@ -64,6 +62,7 @@ #include "tests/libmemcached-1.0/mem_functions.h" +#include "tests/libmemcached-1.0/encoding_key.h" /* Collections we are running */ #include "tests/libmemcached-1.0/all_tests.h" @@ -72,21 +71,30 @@ void get_world(Framework *world) { + if (getenv("LIBMEMCACHED_SERVER_NUMBER")) + { + unsigned long int set_count= strtoul(getenv("LIBMEMCACHED_SERVER_NUMBER"), (char **) NULL, 10); + fatal_assert(set_count >= 1); + world->servers().set_servers_to_run(set_count); + } + else + { + world->servers().set_servers_to_run(8); + } + 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); world->set_socket(); }