diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 18:51:53 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 18:51:53 -0300 |
commit | 4600b9c0359b531affefd1ba11d82f7493a6f8c2 (patch) | |
tree | ec0858b274905b9ed4cae8fd4c40307faec12f6a /scripts | |
parent | ba7e4f0c0cde3263653f06f962e0b5f7c497780d (diff) | |
download | rneovim-4600b9c0359b531affefd1ba11d82f7493a6f8c2.tar.gz rneovim-4600b9c0359b531affefd1ba11d82f7493a6f8c2.tar.bz2 rneovim-4600b9c0359b531affefd1ba11d82f7493a6f8c2.zip |
Add unit test running to travis again
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index 33865e89d4..05747a18aa 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -1,9 +1,9 @@ #!/bin/sh -e -export VALGRIND_CHECK=1 +# export VALGRIND_CHECK=1 make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist" make -# make unittest +make unittest echo "Running tests with valgrind..." if ! make test > /dev/null; then if ls src/testdir/valgrind.* > /dev/null 2>&1; then |