Merge pull request #7683 from mikeller/fix_travis_verbosity

Fix the verbosity of the tests when run in Travis.
This commit is contained in:
Michael Keller 2019-03-03 01:12:37 +13:00 committed by GitHub
commit 05b75261f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -65,7 +65,6 @@ before_script:
- clang --version
- clang++ --version
- gcc --version
- export V=0
script: ./.travis.sh