diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 20:19:58 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-26 20:19:58 -0300 |
commit | 42a9654faeccc77abbe1dbf2a8bc9ddd1fb4a8a7 (patch) | |
tree | 8b170c96ac1d93a8c73fd477d6ab98e25e41dd88 | |
parent | d2d0cc95a160fa44a547be1f14783be29e3042d6 (diff) | |
download | rneovim-42a9654faeccc77abbe1dbf2a8bc9ddd1fb4a8a7.tar.gz rneovim-42a9654faeccc77abbe1dbf2a8bc9ddd1fb4a8a7.tar.bz2 rneovim-42a9654faeccc77abbe1dbf2a8bc9ddd1fb4a8a7.zip |
Enable valgrind when testing on travis
This will slow down testing but will detect pull requests that introduce memory
leaks.
-rwxr-xr-x | scripts/travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index 60ed5c0d36..90e8082f86 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -1,6 +1,6 @@ #!/bin/sh -e -# export VALGRIND_CHECK=1 +export VALGRIND_CHECK=1 make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist" make make test > /dev/null 2>&1 |