Changes in tests/pybin/settings.py [dcfedca:d82892a]
- File:
-
- 1 edited
-
tests/pybin/settings.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
rdcfedca rd82892a 4 4 from . import tools 5 5 6 global original_path7 8 6 try : 9 original_path = os.getcwd()10 7 testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0]))) 11 8 sys.path.append(testpath) … … 22 19 class Architecture: 23 20 KnownArchitectures = { 24 'x64' : 'x64',25 'x86-64' : 'x64',26 'x86_64' : 'x64',27 ' x86' : 'x86',28 ' aarch64' : 'arm',21 'x64' : 'x64', 22 'x86-64' : 'x64', 23 'x86_64' : 'x64', 24 'aarch64' : 'x64', 25 'x86' : 'x86', 29 26 'i386' : 'x86', 30 27 'i486' : 'x86', 31 28 'i686' : 'x86', 32 29 'Intel 80386' : 'x86', 33 'arm' : 'arm',34 'ARM' : 'arm',30 'arm' : 'arm', 31 'ARM' : 'arm', 35 32 } 36 33 … … 116 113 global timeout 117 114 global output_width 118 global archive119 115 120 116 dry_run = options.dry_run … … 126 122 timeout = Timeouts(options.timeout, options.global_timeout) 127 123 output_width = 24 128 archive = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None129 124 130 125
Note:
See TracChangeset
for help on using the changeset viewer.