This add AES support.
[m6w6/libmemcached] / tests / libmemcached-1.0 / all_tests.cc
index b8f93fb562b039b339a331695d9510502f58f603..6121e628a2ecf0c1c658c7add6640a2e67a9879b 100644 (file)
@@ -62,6 +62,7 @@
 
 
 #include "tests/libmemcached-1.0/mem_functions.h"
+#include "tests/libmemcached-1.0/encoding_key.h"
 
 /* Collections we are running */
 #include "tests/libmemcached-1.0/all_tests.h"
@@ -72,13 +73,13 @@ void get_world(Framework *world)
 {
   if (getenv("LIBMEMCACHED_SERVER_NUMBER"))
   {
-    int set_count= atoi(getenv("LIBMEMCACHED_SERVER_NUMBER"));
-    fatal_assert(set_count >= 0);
-    world->servers().set_count(set_count);
+    unsigned long int set_count= strtoul(getenv("LIBMEMCACHED_SERVER_NUMBER"), (char **) NULL, 10);
+    fatal_assert(set_count >= 1);
+    world->servers().set_servers_to_run(set_count);
   }
   else
   {
-    world->servers().set_count(8);
+    world->servers().set_servers_to_run(8);
   }
 
   world->collections= collection;