diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 15:48:26 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 15:48:26 -0300 |
commit | cb9a3684450714945fd2d77a63d687237fdfff24 (patch) | |
tree | 8dfbe0f5cb1a5decfef059007395218e56c7bb11 /scripts | |
parent | 8b94f34cedb85fac0d058e7e678b623a8aac3cd8 (diff) | |
download | rneovim-cb9a3684450714945fd2d77a63d687237fdfff24.tar.gz rneovim-cb9a3684450714945fd2d77a63d687237fdfff24.tar.bz2 rneovim-cb9a3684450714945fd2d77a63d687237fdfff24.zip |
Add configuration to help debug memory leaks
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh new file mode 100755 index 0000000000..90e8082f86 --- /dev/null +++ b/scripts/travis.sh @@ -0,0 +1,7 @@ +#!/bin/sh -e + +export VALGRIND_CHECK=1 +make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist" +make +make test > /dev/null 2>&1 +make install |