Lines Matching refs:jobs
149 '--jobs', '-j', metavar='N', type=int, nargs='?',
152 help='''Runs the tests using N jobs. If the option is set but no value is
153 provided, the script will use as many jobs as it thinks useful.''')
259 def RunLinter(jobs):
261 jobs = args.jobs, progress_prefix = 'cpp lint: ')
264 def RunClangFormat(clang_path, jobs):
267 jobs = jobs,
270 def RunClangTidy(clang_path, jobs):
273 jobs = jobs,
280 def BuildAll(build_options, jobs, environment_options):
281 scons_command = ['scons', '-C', dir_root, 'all', '-j', str(jobs)]
371 rc.Combine(RunLinter(args.jobs))
374 rc.Combine(RunClangFormat(args.clang_format, args.jobs))
377 rc.Combine(RunClangTidy(args.clang_tidy, args.jobs))
425 build_rc = BuildAll(options, args.jobs, environment_options)
447 rc.Combine(tests.Run(args.jobs, args.verbose))