source: tests/pybin/settings.py@ 99cadc60

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 99cadc60 was d82892a, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

add ARM-64 build architecture and fix spelling of Unkown

  • Property mode set to 100644
File size: 3.5 KB
Line 
1import os
2import subprocess
3import sys
4from . import tools
5
6try :
7 testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0])))
8 sys.path.append(testpath)
9 import config
10
11 SRCDIR = os.path.abspath(config.SRCDIR)
12 BUILDDIR = os.path.abspath(config.BUILDDIR)
13 os.chdir(testpath)
14
15except:
16 print('ERROR: missing config.py, re-run configure script.', file=sys.stderr)
17 sys.exit(1)
18
19class Architecture:
20 KnownArchitectures = {
21 'x64' : 'x64',
22 'x86-64' : 'x64',
23 'x86_64' : 'x64',
24 'aarch64' : 'x64',
25 'x86' : 'x86',
26 'i386' : 'x86',
27 'i486' : 'x86',
28 'i686' : 'x86',
29 'Intel 80386' : 'x86',
30 'arm' : 'arm',
31 'ARM' : 'arm',
32 }
33
34 CrossCompileFlags = {
35 'x64' : 'ARCH_FLAGS=-m64',
36 'x86' : 'ARCH_FLAGS=-m32',
37 }
38
39 def __init__(self, arch):
40 try:
41 canonical_host = Architecture.make_canonical( config.HOSTARCH )
42 except KeyError:
43 print("Unknown host architecture %s" % config.HOSTARCH, file=sys.stderr)
44 sys.exit(1)
45
46 if arch:
47 try:
48 arch = Architecture.make_canonical( arch )
49 except KeyError:
50 print("Unknown architecture %s" % arch, file=sys.stderr)
51 sys.exit(1)
52
53 if arch and arch != canonical_host:
54 self.target = arch
55 self.cross_compile = True
56 else:
57 self.target = canonical_host
58 self.cross_compile = False
59
60
61 try :
62 self.flags = Architecture.CrossCompileFlags[self.target]
63 except KeyError:
64 print("Cross compilation not available for architecture %s" % self.target, file=sys.stderr)
65 sys.exit(1)
66
67 self.string = self.target
68
69 def update(self):
70 if not self.cross_compile:
71 self.target = machine_default()
72 self.string = self.target
73 print("updated to %s" % self.target)
74
75 def match(self, arch):
76 return True if not arch else self.target == arch
77
78 @classmethod
79 def make_canonical(_, arch):
80 return Architecture.KnownArchitectures[arch]
81
82
83class Debug:
84 def __init__(self, value):
85 self.string = "debug" if value else "no debug"
86 self.flags = """DEBUG_FLAGS=%s""" % ("-debug -O0" if value else "-nodebug -O2")
87
88class Install:
89 def __init__(self, value):
90 self.string = "installed" if value else "in-tree"
91 self.flags = """INSTALL_FLAGS=%s""" % ("" if value else "-in-tree")
92
93class Timeouts:
94 def __init__(self, ts, tg):
95 self.single = Timeouts.check(ts)
96 self.total = Timeouts.check(tg)
97
98 @classmethod
99 def check(_, value):
100 if value < 1:
101 print("Timeouts must be at least 1 second", file=sys.stderr)
102 sys.exit(1)
103
104 return value
105
106def init( options ):
107 global arch
108 global dry_run
109 global generating
110 global make
111 global debug
112 global install
113 global timeout
114 global output_width
115
116 dry_run = options.dry_run
117 generating = options.regenerate_expected
118 make = ['make']
119 debug = Debug(options.debug)
120 install = Install(options.install)
121 arch = Architecture(options.arch)
122 timeout = Timeouts(options.timeout, options.global_timeout)
123 output_width = 24
124
125
126def update_make_cmd(force, jobs):
127 global make
128
129 make = ['make'] if not force else ['make', "-j%i" % jobs]
130
131def validate():
132 errf = os.path.join(BUILDDIR, ".validate.err")
133 make_ret, out = tools.make( ".validate", error_file = errf, output=subprocess.DEVNULL, error=subprocess.DEVNULL )
134 if make_ret != 0:
135 with open (errf, "r") as myfile:
136 error=myfile.read()
137 print("ERROR: Invalid configuration %s:%s" % (arch.string, debug.string), file=sys.stderr)
138 print(" verify returned : \n%s" % error, file=sys.stderr)
139 tools.rm(errf)
140 sys.exit(1)
141
142 tools.rm(errf)
143
144def prep_output(tests):
145 global output_width
146 output_width = max(map(lambda t: len(t.target()), tests))
Note: See TracBrowser for help on using the repository browser.