Update .travis.yml

This commit is contained in:
Yo-An Lin 2016-03-12 12:19:49 +08:00 committed by c9s
parent 5a644ee046
commit 0c5f1f6b5c

View file

@ -29,7 +29,7 @@ script:
- ./configure --enable-check $CONFIGURE_OPTION
- make V=1
- sudo make install
- if [ "x$VALGRIND" == xyes ]; then make check > /dev/null 2>&1; else make check V=1; fi
- if [ "x$VALGRIND" == xyes ]; then make check ; else make check V=1; fi
# XXX: tracing memory leak, disabled for some mystery reason for automake...
# - if [ "x$VALGRIND" == xyes && "x$DEBUG" == xyes ]; then valgrind ./tests/check_* -v --trace-children=yes --show-leak-kinds=full --leak-check=full; fi