diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-03 15:25:02 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-03 21:51:51 -0300 |
commit | 9615258d1a05cb5c0c1197721734c239a44066b3 (patch) | |
tree | 52fd74496d19652618c2b9cba15bd0f3d40d8404 | |
parent | b32090438232be9398157df6e599a0ee39757765 (diff) | |
download | rneovim-9615258d1a05cb5c0c1197721734c239a44066b3.tar.gz rneovim-9615258d1a05cb5c0c1197721734c239a44066b3.tar.bz2 rneovim-9615258d1a05cb5c0c1197721734c239a44066b3.zip |
travis: Test `nvim --version` in gcc build
The --version flag drives Nvim to take a different code path, which is worth
testing. Now we do it in the "gcc" ci target(It will only fail if the exit code
is different than 0)
-rw-r--r-- | .ci/gcc.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.ci/gcc.sh b/.ci/gcc.sh index 90063e48f3..b4a331cfed 100644 --- a/.ci/gcc.sh +++ b/.ci/gcc.sh @@ -11,6 +11,7 @@ export VALGRIND_LOG="$tmpdir/valgrind-%p.log" CMAKE_EXTRA_FLAGS="-DTRAVIS_CI_BUILD=ON -DUSE_GCOV=ON" $MAKE_CMD CMAKE_EXTRA_FLAGS="${CMAKE_EXTRA_FLAGS}" unittest +build/bin/nvim --version if ! $MAKE_CMD test; then valgrind_check "$tmpdir" exit 1 |