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