summaryrefslogtreecommitdiff
path: root/tests/failure.cc
diff options
context:
space:
mode:
authorBrian Aker <brian@tangent.org>2012-04-02 23:30:19 -0700
committerBrian Aker <brian@tangent.org>2012-04-02 23:30:19 -0700
commite62187d9544abeffaa8552742da6c154fb77cf7c (patch)
tree6000483bc77013f32c3de6d3073cb203012257cb /tests/failure.cc
parent675ac17fddca229e391d80eb610959d9c53db6e5 (diff)
downloadlibmemcached-e62187d9544abeffaa8552742da6c154fb77cf7c.tar.gz
Latest of libtest.
Diffstat (limited to 'tests/failure.cc')
-rw-r--r--tests/failure.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/failure.cc b/tests/failure.cc
index 699ef46c..ccc32f39 100644
--- a/tests/failure.cc
+++ b/tests/failure.cc
@@ -63,6 +63,8 @@ Framework *global_framework= NULL;
static test_return_t shutdown_servers(memcached_st *memc)
{
+ test_skip_valgrind();
+
test_compare(memcached_server_count(memc), 1U);
// Disable a single server, just the first
@@ -73,6 +75,8 @@ static test_return_t shutdown_servers(memcached_st *memc)
static test_return_t add_shutdown_servers(memcached_st *memc)
{
+ test_skip_valgrind();
+
while (memcached_server_count(memc) < 2)
{
const char *argv[1]= { "add_shutdown_server" };
@@ -207,7 +211,7 @@ collection_st collection[] ={
void get_world(Framework *world)
{
- world->servers().set_count(1);
+ world->servers().set_servers_to_run(1);
world->collections= collection;