Merge pull request #2716 from sigiesec/remove-tweetnacl-from-coverage

Problem: coverage includes tweetnacl, which is not our code
This commit is contained in:
Constantin Rack 2017-08-23 15:16:33 +02:00 committed by GitHub
commit f6933f85a9

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 --build-root . --gcov-options '\-lp') || exit 1
( 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