summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-11-27 21:46:09 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-11-28 11:44:22 +0000
commita2cfcfead5e62dfef067ee97e43ce7291ee365d4 (patch)
treeb9a57abda1865c03a08986807b86ff8d7ed24a0e /bin
parent51ecdd4a2ae4835fa9fcaa7fbabbf58348738532 (diff)
add cppunit tests to vim-ide-integration
Change-Id: I5a03ff6d6e740d8032030d1590837610f39acd5e Reviewed-on: https://gerrit.libreoffice.org/31273 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ide2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index e241f3faa9e4..6d549cb45299 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -358,7 +358,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator):
def emit(self):
global_list = []
- for lib in set(self.gbuildparser.libs):
+ for lib in set(self.gbuildparser.libs) | set(self.gbuildparser.tests):
entries = []
for file in lib.cxxobjects:
filePath = os.path.join(self.gbuildparser.srcdir, file) + ".cxx"