Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    rd82892a rdcfedca  
    44from . import tools
    55
     6global original_path
     7
    68try :
     9        original_path = os.getcwd()
    710        testpath = os.path.dirname(os.path.abspath(os.path.join(os.getcwd(), sys.argv[0])))
    811        sys.path.append(testpath)
     
    1922class Architecture:
    2023        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',
    2629                'i386'          : 'x86',
    2730                'i486'          : 'x86',
    2831                'i686'          : 'x86',
    2932                'Intel 80386'   : 'x86',
    30                 'arm'                   : 'arm',
    31                 'ARM'                   : 'arm',
     33                'arm'           : 'arm',
     34                'ARM'           : 'arm',
    3235        }
    3336
     
    113116        global timeout
    114117        global output_width
     118        global archive
    115119
    116120        dry_run      = options.dry_run
     
    122126        timeout      = Timeouts(options.timeout, options.global_timeout)
    123127        output_width = 24
     128        archive      = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None
    124129
    125130
Note: See TracChangeset for help on using the changeset viewer.