Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    r8bdc1c36 rd3c1c6a  
    1 from __future__ import print_function
    2 
    31import os
    42import sys
    5 import tools
     3from . import tools
    64
    75try :
     
    112110        global install
    113111        global timeout
     112        global width
    114113
    115114        dry_run    = options.dry_run
     
    120119        arch       = Architecture(options.arch)
    121120        timeout    = Timeouts(options.timeout, options.global_timeout)
     121        width      = 24
    122122
    123123
     
    139139
    140140        tools.rm(errf)
     141
     142def prep_output(tests):
     143        global width
     144        width = max(map(lambda t: len(t.target()), tests))
Note: See TracChangeset for help on using the changeset viewer.