Fix the verbosity of the tests when run in Travis.
This commit is contained in:
parent
daa6df8024
commit
31150827de
|
@ -66,16 +66,18 @@ elif [ $TARGET ] ; then
|
|||
fi
|
||||
|
||||
elif [ $GOAL ] ; then
|
||||
if [ "test" == "$GOAL" ] ; then
|
||||
if [ "test-all" == "$GOAL" ] ; then
|
||||
$MAKE check-target-independence || exit $?
|
||||
$MAKE check-fastram-usage-correctness || exit $?
|
||||
$MAKE check-platform-included || exit $?
|
||||
else
|
||||
export V=0
|
||||
fi
|
||||
|
||||
$MAKE $GOAL || exit $?
|
||||
|
||||
if [ $PUBLISHCOV ] ; then
|
||||
if [ "test" == "$GOAL" ] ; then
|
||||
if [ "test-all" == "$GOAL" ] ; then
|
||||
lcov --directory . -b src/test --capture --output-file coverage.info 2>&1 | grep -E ":version '402\*', prefer.*'406\*" --invert-match
|
||||
lcov --remove coverage.info 'lib/test/*' 'src/test/*' '/usr/*' --output-file coverage.info # filter out system and test code
|
||||
lcov --list coverage.info # debug before upload
|
||||
|
|
|
@ -65,7 +65,6 @@ before_script:
|
|||
- clang --version
|
||||
- clang++ --version
|
||||
- gcc --version
|
||||
- export V=0
|
||||
|
||||
script: ./.travis.sh
|
||||
|
||||
|
|
Loading…
Reference in New Issue