X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmem_functions.c;h=dca68b121ca891989ca285835aff5873f081e736;hb=a8b3a32d94383973ca85025e71a7a1331e679c06;hp=815f77b73036009fd6b85358f68e00a922be0fb8;hpb=f9b2d2781b96614fbda754a3dbf29097c2bfe101;p=awesomized%2Flibmemcached diff --git a/tests/mem_functions.c b/tests/mem_functions.c index 815f77b7..dca68b12 100644 --- a/tests/mem_functions.c +++ b/tests/mem_functions.c @@ -5407,6 +5407,13 @@ static test_return_t test_get_last_disconnect(memcached_st *memc) return TEST_SUCCESS; } +static test_return_t test_verbosity(memcached_st *memc) +{ + memcached_verbosity(memc, 3); + + return TEST_SUCCESS; +} + /* * This test ensures that the failure counter isn't incremented during * normal termination of the memcached instance. @@ -5632,6 +5639,7 @@ test_st tests[] ={ {"connectionpool", 1, (test_callback_fn)connection_pool_test }, #endif {"test_get_last_disconnect", 1, (test_callback_fn)test_get_last_disconnect}, + {"verbosity", 1, (test_callback_fn)test_verbosity}, {0, 0, 0} };