Home | History | Annotate | Download | only in tools

Lines Matching refs:bot

131       for bot in self._bots:
132 yield bot
144 submit_try %s--bot <buildername> [<buildername> ...]
146 -b, --bot Builder(s) or Alias on which to run the try. Required.
183 elif arg == '-b' or arg == '--bot':
185 Error('--bot specified multiple times.')
187 Error('You must specify a builder with "--bot".')
190 for bot in argv.pop(0).split(','):
191 if bot in ALL_ALIASES:
194 'aliases.' % bot)
195 elif bot == COMPILE_BUILDERS:
197 elif bot == CQ_BUILDERS:
199 elif bot == REGEX:
210 if not bot in trybots:
211 Error('Unrecognized builder: %s' % bot)
212 using_bots.append(bot)
224 Error('You must specify one or more builders using --bot.')
243 botlist = ','.join(['%s%s' % (bot, TRYBOT_SUFFIX) for bot in trybots])
266 '--bot', botlist,