aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-19 17:46:20 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-19 17:46:20 -0700
commit7552f0f95863705e498d71e3227bb890cbb4ef05 (patch)
treea53f467f9bc31f13f532cff7c158f33e853bb6fb /tools/run_tests
parentc7299987a0c7621d5d6bef7438e9baf04fc70de2 (diff)
Ensure tests are built during run_tests runs
The issue remains that we don't test our tools, but at least we test that they compile.
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 4235edc1a2..b17e1ecbc0 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -133,7 +133,7 @@ class CLanguage(object):
return sorted(out)
def make_targets(self):
- return ['buildtests_%s' % self.make_target]
+ return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target]
def build_steps(self):
return []