aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-07-01 19:46:54 -0400
committerEvan Huus <eapache@gmail.com>2014-07-01 23:48:41 +0000
commitab1e6f30d26973cba2b6752b7b7ba35e17f8042f (patch)
tree69fa4a416c6231685db51e844a3820a021620ecb /epan
parent22ea889ee4bd6fe408faade5768005041e3e26e4 (diff)
Bump (again) the amount of work we do for wmem's timing test
Apparently the new win8 vm has a *very* low-resolution timer, and the allocators are indistinguishable at the previous amount of work. Change-Id: If4e5bb8f85b1f0d39658f54001c88f42ffddfc47 Reviewed-on: https://code.wireshark.org/review/2768 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/wmem/wmem_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wmem/wmem_test.c b/epan/wmem/wmem_test.c
index e141b407d7..7ed27f65a9 100644
--- a/epan/wmem/wmem_test.c
+++ b/epan/wmem/wmem_test.c
@@ -353,7 +353,7 @@ wmem_time_allocator(wmem_allocator_type_t type)
allocator = wmem_allocator_force_new(type);
- for (j=0; j<1024; j++) {
+ for (j=0; j<2048; j++) {
for (i=0; i<MAX_SIMULTANEOUS_ALLOCS; i++) {
wmem_alloc(allocator, 8);
}