separate coverage for util

This commit is contained in:
Nikolay Volf 2016-02-03 22:00:09 +03:00
parent 3f3ebdbfa1
commit 98fc321733

View File

@ -1 +0,0 @@
../cov.sh

9
util/cov.sh Executable file
View File

@ -0,0 +1,9 @@
if ! type kcov > /dev/null; then
echo "Install kcov first (details inside this file). Aborting."
exit 1
fi
cargo test --no-run || exit $?
mkdir -p target/coverage
kcov --exclude-pattern ~/.multirust,rocksdb,secp256k1 --include-pattern src --verify target/coverage target/debug/ethcore_util*
xdg-open target/coverage/index.html