Changeset 41af19c for tests/pybin/settings.py
- Timestamp:
- Apr 16, 2020, 12:00:42 PM (3 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 7215000, 9a7c88f
- Parents:
- 1c412aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r1c412aa r41af19c 23 23 class Architecture: 24 24 KnownArchitectures = { 25 'x64' 26 'x86-64' 27 'x86_64' 28 'x86' 29 'aarch64' 30 'i386' 31 'i486' 32 'i686' 33 'Intel 80386' 34 'arm' 35 'ARM' 25 'x64' : 'x64', 26 'x86-64' : 'x64', 27 'x86_64' : 'x64', 28 'x86' : 'x86', 29 'aarch64' : 'arm', 30 'i386' : 'x86', 31 'i486' : 'x86', 32 'i686' : 'x86', 33 'Intel 80386' : 'x86', 34 'arm' : 'arm', 35 'ARM' : 'arm', 36 36 } 37 37 … … 129 129 global timeout2gdb 130 130 131 all_arch = [Architecture(o) for o in list(dict.fromkeys(options.arch ))] 131 all_arch = [Architecture(o) for o in list(dict.fromkeys(options.arch ))] if options.arch else [Architecture(None)] 132 132 all_debug = [Debug(o) for o in list(dict.fromkeys(options.debug ))] 133 133 all_install = [Install(o) for o in list(dict.fromkeys(options.install))]
Note: See TracChangeset
for help on using the changeset viewer.