X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemerror.cc;h=76cc96c434570134387a79d112b478a2b8164064;hb=f47caf2833675cce0b62a6e4ffd6764c1490a8b4;hp=00863475838620c3d9639029062737b566ebacb0;hpb=70d0d339d06cbe6b35ef0efc4fd3d7e8f92b6a01;p=m6w6%2Flibmemcached diff --git a/tests/memerror.cc b/tests/memerror.cc index 00863475..76cc96c4 100644 --- a/tests/memerror.cc +++ b/tests/memerror.cc @@ -50,7 +50,7 @@ using namespace libtest; #pragma GCC diagnostic ignored "-Wstrict-aliasing" #endif -static std::string executable; +static std::string executable("./clients/memerror"); static test_return_t help_TEST(void *) { @@ -111,16 +111,21 @@ collection_st collection[] ={ {0, 0, 0, 0} }; -static void *world_create(server_startup_st&, test_return_t&) +static void *world_create(server_startup_st&, test_return_t& error) { + if (libtest::has_memcached() == false) + { + error= TEST_SKIPPED; + return NULL; + } + return NULL; } -void get_world(Framework *world) +void get_world(libtest::Framework* world) { - executable= "./clients/memerror"; - world->collections= collection; - world->_create= world_create; + world->collections(collection); + world->create(world_create); }