You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
511 B
18 lines
511 B
7 months ago
|
#!/bin/bash -e
|
||
|
|
||
|
cargo rustc --features map -- --test -C link-dead-code -Z profile -Z no-landing-pads
|
||
|
|
||
|
LCOVOPTS=(
|
||
|
--gcov-tool llvm-gcov
|
||
|
--rc lcov_branch_coverage=1
|
||
|
--rc lcov_excl_line=assert
|
||
|
)
|
||
|
lcov "${LCOVOPTS[@]}" --capture --directory . --base-directory . \
|
||
|
-o target/coverage/raw.lcov
|
||
|
lcov "${LCOVOPTS[@]}" --extract target/coverage/raw.lcov "$(pwd)/*" \
|
||
|
-o target/coverage/raw_crate.lcov
|
||
|
|
||
|
genhtml --branch-coverage --demangle-cpp --legend \
|
||
|
-o target/coverage/ \
|
||
|
target/coverage/raw_crate.lcov
|