summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDavid T. Goldblatt <davidtgoldblatt@gmail.com>2018-05-07 15:48:14 -0700
committerDavid Goldblatt <davidtgoldblatt@gmail.com>2018-05-08 11:20:25 -0700
commite94ca7f3e2b0ef393d713e7287b7f6b61645322b (patch)
tree3fcb1db50de7879d7badd51a22f1b65f49da417f /scripts
parenta308af360ca8fccb31f9dcdb0654b0d4cf6f776c (diff)
downloadjemalloc-e94ca7f3e2b0ef393d713e7287b7f6b61645322b.tar.gz
run_tests.sh: Don't test large vaddr with -m32.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_run_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/gen_run_tests.py b/scripts/gen_run_tests.py
index f1988fdc..a87ecffb 100755
--- a/scripts/gen_run_tests.py
+++ b/scripts/gen_run_tests.py
@@ -64,6 +64,11 @@ for cc, cxx in possible_compilers:
else '')
)
+ # We don't want to test large vaddr spaces in 32-bit mode.
+ if ('-m32' in compiler_opts and '--with-lg-vaddr=56' in
+ config_opts):
+ continue
+
# Per CPU arenas are only supported on Linux.
linux_supported = ('percpu_arena:percpu' in malloc_conf_opts \
or 'background_thread:true' in malloc_conf_opts)