- Timestamp:
- Aug 15, 2019, 10:35:13 AM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 17bc05b
- Parents:
- 5c4a473
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r5c4a473 r6daaee3 114 114 def init( options ): 115 115 global arch 116 global archive 117 global debug 118 global distcc 116 119 global dry_run 117 120 global generating 121 global install 118 122 global make 119 global debug 120 global install 123 global output_width 121 124 global timeout 122 global output_width123 <<<<<<< HEAD124 global distcc125 =======126 global archive127 >>>>>>> master128 125 126 arch = Architecture(options.arch) 127 archive = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None 128 debug = Debug(options.debug) 129 distcc = "DISTCC_CFA_PATH=~/.cfadistcc/%s/cfa" % tools.config_hash() 129 130 dry_run = options.dry_run 130 131 generating = options.regenerate_expected 132 install = Install(options.install) 131 133 make = ['make'] 132 debug = Debug(options.debug) 133 install = Install(options.install) 134 arch = Architecture(options.arch) 134 output_width = 24 135 135 timeout = Timeouts(options.timeout, options.global_timeout) 136 output_width = 24137 <<<<<<< HEAD138 distcc = "DISTCC_CFA_PATH=~/.cfadistcc/%s/cfa" % tools.config_hash()139 =======140 archive = os.path.abspath(os.path.join(original_path, options.archive_errors)) if options.archive_errors else None141 >>>>>>> master142 136 143 137 if distribute and not os.environ.get('DISTCC_LOG'):
Note: See TracChangeset
for help on using the changeset viewer.