Modify travis configuration to install valgrind

This should fix previous build failures
This commit is contained in:
Thiago de Arruda
2014-02-26 22:23:51 -03:00
parent a81d25e6e4
commit a2ce1df772
3 changed files with 8 additions and 6 deletions

View File

@@ -1,12 +1,11 @@
#!/bin/sh
#!/bin/sh -e
export VALGRIND_CHECK=1
make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist" || exit 1
make || exit 1
make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist"
make
echo "Running tests with valgrind..."
if ! make test > /dev/null 2>&1; then
failed=$(ls src/testdir/valgrind.*)
if [ -n "$failed" ]; then
if ls src/testdir/valgrind.* > /dev/null 2>&1; then
echo "Memory leak detected" >&2
cat src/testdir/valgrind.*
else