diff options
author | David G. Quintas <dgq@google.com> | 2017-05-11 17:33:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-11 17:33:56 -0700 |
commit | af84518834d97bbaa91929484b66be8223a81470 (patch) | |
tree | 790408ba81981b01a950ff96f53cdef75ecf7b47 | |
parent | f3b28f30a48539d45259bf657eb2f54a76e6216e (diff) | |
parent | 8ff3032053864f1fa50f26ea6b3e05a328cc2ff4 (diff) |
Merge pull request #11106 from dgquintas/fix_run_tests
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; |