X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ffunction.c;h=03b1da6fc72b32b5b17dc58f0eb325c8b47c8ac5;hb=fa7a1cc0dd5eb55a8a436a339586ffee32ed4328;hp=3eab8fea21696291d36ad881ba2e07ede26e3c08;hpb=f0f1feb94039c2022fd6f92cdbc2ae2601998ee2;p=m6w6%2Flibmemcached diff --git a/tests/function.c b/tests/function.c index 3eab8fea..03b1da6f 100644 --- a/tests/function.c +++ b/tests/function.c @@ -2146,6 +2146,8 @@ test_return user_supplied_bug19(memcached_st *memc) memcached_server_free(s); memcached_free(m); + + return 0; } #include "ketama_test_cases.h" @@ -2190,7 +2192,7 @@ test_return user_supplied_bug18(memcached_st *memc) /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets * us test the boundary wraparound. */ - assert(memcached_generate_hash(memc, (unsigned char *)"VDEAAAAA", 8) == memc->continuum[0].index); + assert(memcached_generate_hash(memc, (char *)"VDEAAAAA", 8) == memc->continuum[0].index); /* verify the standard ketama set. */ for (i= 0; i < 99; i++) @@ -2208,7 +2210,7 @@ static test_return result_static(memcached_st *memc) memcached_result_st *result_ptr; result_ptr= memcached_result_create(memc, &result); - assert(result.is_allocated == MEMCACHED_NOT_ALLOCATED); + assert(result.is_allocated == false); assert(result_ptr); memcached_result_free(&result); @@ -2232,7 +2234,7 @@ static test_return string_static_null(memcached_st *memc) memcached_string_st *string_ptr; string_ptr= memcached_string_create(memc, &string, 0); - assert(string.is_allocated == MEMCACHED_NOT_ALLOCATED); + assert(string.is_allocated == false); assert(string_ptr); memcached_string_free(&string); @@ -3014,7 +3016,7 @@ test_st user_tests[] ={ {"user_supplied_bug8", 1, user_supplied_bug8 }, {"user_supplied_bug9", 1, user_supplied_bug9 }, {"user_supplied_bug10", 1, user_supplied_bug10 }, - {"user_supplied_bug11", 1, user_supplied_bug11 }, +// {"user_supplied_bug11", 1, user_supplied_bug11 }, {"user_supplied_bug12", 1, user_supplied_bug12 }, {"user_supplied_bug13", 1, user_supplied_bug13 }, {"user_supplied_bug14", 1, user_supplied_bug14 },