From e3d6625fdbd12d7388892cfc2317c5a5a47305cf Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Mon, 26 Oct 2015 11:33:45 -0700 Subject: [PATCH] use proper shortname for sanity tests --- tools/run_tests/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 3859958a952..b1ca4cf4c24 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 []