diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-10-26 16:40:58 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-10-26 16:40:58 -0700 |
commit | b56b0f14a77cae6757c9f9fb46f54918125781f1 (patch) | |
tree | 9f8922f1638614f729991bd5f2c6cc8f9219f298 /tools | |
parent | c0f656a54ade86d2ff3c5a3a18cfad5c462330ba (diff) | |
parent | e3d6625fdbd12d7388892cfc2317c5a5a47305cf (diff) |
Merge pull request #3964 from jtattermusch/sanity_sanity
Use proper shortname for sanity tests
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 3859958a95..b1ca4cf4c2 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -411,8 +411,8 @@ class ObjCLanguage(object): class Sanity(object): def test_specs(self, config, travis): - return [config.job_spec('tools/run_tests/run_sanity.sh', None), - config.job_spec('tools/run_tests/check_sources_and_headers.py', None)] + return [config.job_spec(['tools/run_tests/run_sanity.sh'], None), + config.job_spec(['tools/run_tests/check_sources_and_headers.py'], None)] def pre_build_steps(self): return [] |