Changes in tests/pybin/settings.py [8bdc1c36:d3c1c6a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r8bdc1c36 rd3c1c6a 1 from __future__ import print_function2 3 1 import os 4 2 import sys 5 import tools3 from . import tools 6 4 7 5 try : … … 112 110 global install 113 111 global timeout 112 global width 114 113 115 114 dry_run = options.dry_run … … 120 119 arch = Architecture(options.arch) 121 120 timeout = Timeouts(options.timeout, options.global_timeout) 121 width = 24 122 122 123 123 … … 139 139 140 140 tools.rm(errf) 141 142 def 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.