Skip to content

Commit

Permalink
Make run_tests.py respect job count for compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 21, 2016
1 parent bf363c0 commit dd6f7ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ def make_jobspec(cfg, targets, makefile='Makefile'):
if targets:
return [jobset.JobSpec([os.getenv('MAKE', 'make'),
'-f', makefile,
'-j', '%d' % (multiprocessing.cpu_count() + 1),
'-j', '%d' % args.jobs,
'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown,
'CONFIG=%s' % cfg] +
language_make_options +
Expand Down

0 comments on commit dd6f7ed

Please sign in to comment.