Home | History | Annotate | Download | only in tools

Lines Matching refs:bot

138       for bot in self._bots:
139 yield bot
151 submit_try %s--bot <buildername> [<buildername> ...]
153 -b, --bot Builder(s) or Alias on which to run the try. Required.
188 elif arg == '-b' or arg == '--bot':
190 Error('--bot specified multiple times.')
192 Error('You must specify a builder with "--bot".')
195 for bot in argv.pop(0).split(','):
196 if bot in ALL_ALIASES:
199 'aliases.' % bot)
200 if bot == ALL_BUILDERS:
201 are_you_sure = raw_input('Running a try on every bot is very '
209 elif bot == COMPILE_BUILDERS:
211 elif bot == CQ_BUILDERS:
213 elif bot == REGEX:
224 if not bot in trybots:
225 Error('Unrecognized builder: %s' % bot)
226 using_bots.append(bot)
238 Error('You must specify one or more builders using --bot.')
250 - bot: list of strings; the names of the try builders to run.
253 - bot: list of strings; the names of the try builders to run.
257 botlist = ','.join(['%s%s' % (bot, TRYBOT_SUFFIX) for bot in args.bots])
262 '--bot', botlist]
279 '--bot', botlist,