X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemerror.cc;h=423340179adcb4763789aa5689ebb7aa6ba84e28;hb=62d142cd69b5b6b7e044319085bc011e85dd90eb;hp=dd7610ef625cb9be3a23cbb47742fa959f21535d;hpb=cf55f693c7fc7693afbb4594d97d23795cf7f2a0;p=awesomized%2Flibmemcached diff --git a/tests/memerror.cc b/tests/memerror.cc index dd7610ef..42334017 100644 --- a/tests/memerror.cc +++ b/tests/memerror.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; @@ -111,13 +111,19 @@ 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) { world->collections(collection); world->create(world_create);