aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-03-28 11:21:03 +0200
committerGravatar Mehrdad Afshari <mmx@google.com>2018-04-03 10:12:58 -0700
commit39d897347360b1c4d85e5aa070e83195de58b82b (patch)
treee27dfbfddce56de31bc4bbb751cb0a8eb715f86f /tools/run_tests
parent37b8385c9de457bb49c77ac8ab72f6e49044b808 (diff)
cleanup configuration for linux sanity tests
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/run_tests_matrix.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests_matrix.py b/tools/run_tests/run_tests_matrix.py
index 433137a9bc..c5b7386dc8 100755
--- a/tools/run_tests/run_tests_matrix.py
+++ b/tools/run_tests/run_tests_matrix.py
@@ -161,9 +161,18 @@ def _generate_jobs(languages,
def _create_test_jobs(extra_args=[], inner_jobs=_DEFAULT_INNER_JOBS):
test_jobs = []
+ # sanity tests
+ test_jobs += _generate_jobs(
+ languages=['sanity'],
+ configs=['dbg', 'opt'],
+ platforms=['linux'],
+ labels=['basictests'],
+ extra_args=extra_args,
+ inner_jobs=inner_jobs)
+
# supported on linux only
test_jobs += _generate_jobs(
- languages=['sanity', 'php7'],
+ languages=['php7'],
configs=['dbg', 'opt'],
platforms=['linux'],
labels=['basictests', 'multilang'],