Browse Source

Try to fix memarea test on 32-bit systems

Nick Mathewson 8 years ago
parent
commit
6ceb37971e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/test/test_util.c

+ 1 - 1
src/test/test_util.c

@@ -2876,7 +2876,7 @@ test_util_memarea(void *arg)
   memarea_get_stats(area, &initial_allocation, &dummy);
 
   /* Check for running over an area's size. */
-  for (i = 0; i < 512; ++i) {
+  for (i = 0; i < 4096; ++i) {
     size_t n = crypto_rand_int(6);
     p1 = memarea_alloc(area, n);
     total += n;