Problem: coverage report includes irrelevant files

Solution: properly set file filter to only include files in src except tweetnacl
This commit is contained in:
Simon Giesecke 2020-09-04 10:00:40 +02:00
parent 1d62d7c94a
commit 74543a921c

View File

@ -29,4 +29,4 @@ fi
pip install --user cpp-coveralls
# Build, check, and install from local source
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check && coveralls --exclude tests --exclude src/tweetnacl.c --exclude src/tweetnacl.h --build-root . --gcov-options '\-lp') || exit 1
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check && coveralls --include src --exclude src/tweetnacl.c --exclude src/tweetnacl.h --build-root . --gcov-options '\-lp') || exit 1