diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-02-27 09:57:58 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-02-27 09:57:58 -0800 |
commit | 86fa1c5541debf82cfd0bd7e548c59ac9db83b25 (patch) | |
tree | 58f05e5f811b6238aca00dfa2a7eb6c072a44431 /tools/run_tests | |
parent | 20e081a63201e53a193a2178afc522624a5ec69a (diff) |
Save makefile var clobbering
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index fddd8eb58b..4e0ff85c59 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -201,7 +201,7 @@ make_targets = [] languages = set(_LANGUAGES[l] for l in args.language) build_steps = [jobset.JobSpec(['make', '-j', '%d' % (multiprocessing.cpu_count() + 1), - 'DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown, + 'EXTRA_DEFINES=GRPC_TEST_SLOWDOWN_MACHINE_FACTOR=%f' % args.slowdown, 'CONFIG=%s' % cfg] + list(set( itertools.chain.from_iterable( l.make_targets() for l in languages)))) |