hurl/bin/coverage_run.sh

25 lines
493 B
Bash
Raw Normal View History

2023-12-06 10:48:01 +03:00
#!/bin/bash
set -Eeuo pipefail
rm -rf target/profile
rm -rf target/coverage
cargo clean
RUSTFLAGS="-Cinstrument-coverage"
export RUSTFLAGS
LLVM_PROFILE_FILE="$(pwd)/target/profile/test-integ-%p-%m.profraw"
export LLVM_PROFILE_FILE
cargo build
PATH=$(pwd)/target/debug:$PATH
export PATH
bin/test/test_integ.sh
grcov target/profile \
--binary-path target/debug \
--source-dir . \
--output-types html \
--branch \
--ignore-not-existing \
--output-path target/coverage