run_tests.sh: Don't test large vaddr with -m32.

This commit is contained in:
David T. Goldblatt 2018-05-07 15:48:14 -07:00 committed by David Goldblatt
parent a308af360c
commit e94ca7f3e2

View File

@ -64,6 +64,11 @@ for cc, cxx in possible_compilers:
else '') 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. # Per CPU arenas are only supported on Linux.
linux_supported = ('percpu_arena:percpu' in malloc_conf_opts \ linux_supported = ('percpu_arena:percpu' in malloc_conf_opts \
or 'background_thread:true' in malloc_conf_opts) or 'background_thread:true' in malloc_conf_opts)