10 lines
333 B
Bash
10 lines
333 B
Bash
|
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
|