Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    rdcfedca rd82892a  
    44from . import tools
    55
    6 global original_path
    7 
    86try :
    9         original_path = os.getcwd()
    107        testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0])))
    118        sys.path.append(testpath)
     
    2219class Architecture:
    2320        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',
    2926                'i386'          : 'x86',
    3027                'i486'          : 'x86',
    3128                'i686'          : 'x86',
    3229                'Intel 80386'   : 'x86',
    33                 'arm'           : 'arm',
    34                 'ARM'           : 'arm',
     30                'arm'                   : 'arm',
     31                'ARM'                   : 'arm',
    3532        }
    3633
     
    116113        global timeout
    117114        global output_width
    118         global archive
    119115
    120116        dry_run      = options.dry_run
     
    126122        timeout      = Timeouts(options.timeout, options.global_timeout)
    127123        output_width = 24
    128         archive      = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None
    129124
    130125
Note: See TracChangeset for help on using the changeset viewer.