summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-05-01 17:07:46 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-05-01 17:10:04 -0400
commitef5d4d55fe76b71edaf83999ca7408121a5439fa (patch)
treeddec95e922a61ebfa4c641bfeb93ae6c1f5ecb7b /tests
parenta84637377ca81fe53bff1f694c7364eda21b88c9 (diff)
Fix make check
g_thread_init() causes a hash table to be allocated (in read_aliases). Since hash tables are now a bit larger, we need to bump one of the probe sizes to avoid our probe slice being used for the aliases hash table.
Diffstat (limited to 'tests')
-rw-r--r--tests/slice-threadinit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/slice-threadinit.c b/tests/slice-threadinit.c
index 5c44075b9..f29dcbed1 100644
--- a/tests/slice-threadinit.c
+++ b/tests/slice-threadinit.c
@@ -23,7 +23,7 @@
#define N_PAGES (101) /* number of pages to sample */
#define SAMPLE_SIZE (7)
#define PAGE_SIZE (128) /* must be <= minimum GSlice alignment block */
-#define MAGAZINE_PROBES { 81, 265, 347 } /* block sizes hopefully unused by g_thread_init */
+#define MAGAZINE_PROBES { 97, 265, 347 } /* block sizes hopefully unused by g_thread_init */
#define MAX_PROBE_TRIALS (1031) /* must be >= maximum magazine size */
#define ALIGN(size, base) ((base) * (gsize) (((size) + (base) - 1) / (base)))