Fixed actual loop in add_wrapper ;-)
authorTrond Norbye <trond.norbye@sun.com>
Sat, 21 Mar 2009 13:34:52 +0000 (14:34 +0100)
committerTrond Norbye <trond.norbye@sun.com>
Sat, 21 Mar 2009 13:34:52 +0000 (14:34 +0100)
tests/function.c

index f7dad825bd18e17ad33ad0fb0ba6fd26c09a980b..faa45494e90deef8a05ff08e7ae2fa8e9c06badd 100644 (file)
@@ -558,7 +558,7 @@ static test_return  add_wrapper(memcached_st *memc)
   max= 10;
 #endif
 
-  for (x= 0; x < 10000; x++)
+  for (x= 0; x < max; x++)
     add_test(memc);
 
   return 0;