export CARGO_INCREMENTAL=0 export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads" cargo build cargo test mkdir -p ccov zip -0 ccov/ccov.zip `find target/debug \( -name "*.gc*" \) -print` grcov ccov/ccov.zip -s . -t html --llvm --branch --ignore-not-existing --ignore "/*" -o ccov open ccov/index.html unset CARGO_INCREMENTAL unset RUSTFLAGS