I'm learning Rust!
Only work in nightly now.
cargo install grcov
export CARGO_INCREMENTAL=0
# -Cpanic=abort doesn't work for dylib
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests"
export RUSTDOCFLAGS="-Cpanic=abort"
cargo +nightly test --all
grcov . -o ./target/debug/coverage/ -s . -t html --llvm --branch --ignore-not-existing --excl-start "#\[test\]" --excl-br-start "#\[test\]"
# -t html doesn't report branch parsing now, so we use lcov
grcov . -o ./target/debug/lcov.info -s . -t lcov --llvm --branch --ignore-not-existing --ignore "$HOME/.cargo/*" --excl-start "#\[test\]"
genhtml -o ./target/debug/coverage/ --show-details --branch-coverage --highlight --ignore-errors source --legend ./target/debug/lcov.info
Doesn't work in Mac OS
-
Dependencies
brew install zlib bash cmake pkgconfig
-
pulling Kcov from Github
-
make and install
cd /path/to/kcov/source/dir mkdir build cd build cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr/local \ .. make make install
-
Uninstall Kcov
cd /path/to/kcov/source/dir cd build xargs rm < install_manifest.txt
cargo install cargo-kcov