X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ferror_conditions.cc;h=66e7c44e02534b085c368791647c2cca6b005aa1;hb=ad94287c37250fcb1f7881705f0effb37bae7da5;hp=ad4e2c8372055842d1116a1990711155814013bc;hpb=57ccacee54e77955ebe20d52e06934850e182adc;p=m6w6%2Flibmemcached diff --git a/tests/error_conditions.cc b/tests/error_conditions.cc index ad4e2c83..66e7c44e 100644 --- a/tests/error_conditions.cc +++ b/tests/error_conditions.cc @@ -35,7 +35,8 @@ * */ -#include +#include +#include #define BUILDING_LIBMEMCACHED @@ -51,10 +52,10 @@ test_return_t memcached_increment_MEMCACHED_NO_SERVERS(memcached_st *) memc_ptr= memcached_create(NULL); test_true(memc_ptr); - memcached_increment(memc_ptr, memcached_literal_param("dead key"), 1, NULL); + memcached_increment(memc_ptr, test_literal_param("dead key"), 1, NULL); test_true(memcached_last_error(memc_ptr) == MEMCACHED_NO_SERVERS); - memcached_increment(memc_ptr, memcached_literal_param("dead key"), 1, NULL); + memcached_increment(memc_ptr, test_literal_param("dead key"), 1, NULL); test_true(memcached_last_error(memc_ptr) == MEMCACHED_NO_SERVERS); memcached_free(memc_ptr);