From e94ca7f3e2b0ef393d713e7287b7f6b61645322b Mon Sep 17 00:00:00 2001 From: "David T. Goldblatt" Date: Mon, 7 May 2018 15:48:14 -0700 Subject: [PATCH] run_tests.sh: Don't test large vaddr with -m32. --- scripts/gen_run_tests.py | 5 +++++ 1 file changed, 5 insertions(+) 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)