X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcp.cc;h=ef5ef0fa7abe33af80c3410a5bac92153566da59;hb=8bfabdeae9c1ec345c88ca5325c003165212f8b6;hp=7ce19101a0864829bc24cfb8aa0a55a39c2d34f8;hpb=da8731f513af0fcd2011e244a065f164241bced3;p=m6w6%2Flibmemcached diff --git a/tests/memcp.cc b/tests/memcp.cc index 7ce19101..ef5ef0fa 100644 --- a/tests/memcp.cc +++ b/tests/memcp.cc @@ -39,10 +39,10 @@ Test that we are cycling the servers we are creating during testing. */ -#include +#include #include -#include +#include using namespace libtest; @@ -50,16 +50,7 @@ using namespace libtest; #pragma GCC diagnostic ignored "-Wstrict-aliasing" #endif -static std::string executable; - -static test_return_t quiet_test(void *) -{ - const char *args[]= { "--quiet", 0 }; - - test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true)); - - return TEST_SUCCESS; -} +static std::string executable("./clients/memcp"); static test_return_t help_test(void *) { @@ -82,7 +73,6 @@ static test_return_t server_test(void *) } test_st memcp_tests[] ={ - {"--quiet", true, quiet_test }, {"--help", true, help_test }, {"--server_test", true, server_test }, {0, 0, 0} @@ -95,14 +85,13 @@ 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; } - const char *argv[1]= { "memcp" }; - if (not server_startup(servers, "memcached", libtest::get_free_port(), 1, argv)) + if (server_startup(servers, "memcached", libtest::default_port(), 0, NULL) == false) { error= TEST_FAILURE; } @@ -111,10 +100,9 @@ static void *world_create(server_startup_st& servers, test_return_t& error) } -void get_world(Framework *world) +void get_world(libtest::Framework* world) { - executable= "./clients/memcp"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }