mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
Fix travis script
It was broke because the ls command failed when no valgrind.* file were found
This commit is contained in:
@@ -5,7 +5,7 @@ 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.*)
|
||||
failed=$(ls src/testdir/valgrind.* || true)
|
||||
if [ -n "$failed" ]; then
|
||||
echo "Memory leak detected" >&2
|
||||
cat src/testdir/valgrind.*
|
||||
|
Reference in New Issue
Block a user