Skip to content
Snippets Groups Projects
Commit 8ff30320 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Fix run_tests for C++

parent 4b56aa52
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment