X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemcat.cc;h=2910e4b9be2635d05dbd1b4959aa19206dedd7c4;hb=d9b744aa354952e18e07d6448a4004aa0c7e5802;hp=23d59325d03bb82b5f36c93be65a3504e00eb97d;hpb=1d6aaf09ebb2aafad07307f736d7bab6fdb79d2c;p=awesomized%2Flibmemcached diff --git a/tests/memcat.cc b/tests/memcat.cc index 23d59325..2910e4b9 100644 --- a/tests/memcat.cc +++ b/tests/memcat.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/memcat"); static test_return_t help_test(void *) { @@ -122,7 +113,6 @@ static test_return_t NOT_FOUND_test(void *) } test_st memcat_tests[] ={ - {"--quiet", true, quiet_test }, {"--help", true, help_test }, {"cat(FOUND)", true, cat_test }, {"cat(NOT_FOUND)", true, NOT_FOUND_test }, @@ -136,14 +126,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]= { "memcat" }; - if (not server_startup(servers, "memcached", libtest::default_port(), 1, argv)) + if (not server_startup(servers, "memcached", libtest::default_port(), NULL)) { error= TEST_FAILURE; } @@ -152,10 +141,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/memcat"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }