We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b001e6e commit 4c8829eCopy full SHA for 4c8829e
scripts/gen_run_tests.py
@@ -1,9 +1,14 @@
1
#!/usr/bin/env python
2
3
+import sys
4
from itertools import combinations
5
from os import uname
6
from multiprocessing import cpu_count
7
8
+# Later, we want to test extended vaddr support. Apparently, the "real" way of
9
+# checking this is flaky on OS X.
10
+bits_64 = sys.maxsize > 2**32
11
+
12
nparallel = cpu_count() * 2
13
14
uname = uname()[0]
@@ -23,6 +28,9 @@ def powerset(items):
23
28
'--enable-prof',
24
29
'--disable-stats',
25
30
]
31
+if bits_64:
32
+ possible_config_opts.append('--with-lg-vaddr=56')
33
26
34
possible_malloc_conf_opts = [
27
35
'tcache:false',
36
'dss:primary',
0 commit comments