Modified test to allow it to run on slow machines (aka it ran too long) 0.7 0_7
authorBrian Aker <brian@tangent.org>
Tue, 30 Oct 2007 17:04:32 +0000 (10:04 -0700)
committerBrian Aker <brian@tangent.org>
Tue, 30 Oct 2007 17:04:32 +0000 (10:04 -0700)
tests/test.c

index ac319bc0a87f63ec88fc1d9b8b57a470b550e929..5653271aa6fe06d9f9ae06c6107d63cb92e45332 100644 (file)
@@ -609,9 +609,11 @@ void user_supplied_bug2(memcached_st *memc)
   memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE, &setter);
   getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE);
   getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE);
-#endif
 
   for (x= 0, errors= 0, total= 0 ; total < 20 * 1024576 ; x++)
+#endif
+
+  for (x= 0, errors= 0, total= 0 ; total < 24576 ; x++)
   {
     memcached_return rc= MEMCACHED_SUCCESS;
     char buffer[SMALL_STRING_LEN];