diff options
author | David Garcia Quintas <dgq@google.com> | 2017-05-11 16:13:37 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2017-05-11 16:13:37 -0700 |
commit | 8ff3032053864f1fa50f26ea6b3e05a328cc2ff4 (patch) | |
tree | 81055658ffd65bb0ae8ccd225b87a0445c07300e | |
parent | 4b56aa52fc854e25acaa8d8a89c75bc8f93d114e (diff) |
Fix run_tests for C++
-rwxr-xr-x | tools/run_tests/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 83a83948a5..196e26e1b6 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -340,7 +340,8 @@ class CLanguage(object): if self.platform == 'windows': # don't build tools on windows just yet return ['buildtests_%s' % self.make_target] - return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target] + return ['buildtests_%s' % self.make_target, 'tools_%s' % self.make_target, + 'check_epollexclusive'] def make_options(self): return self._make_options; |