8 lines
273 B
Bash
Executable File
8 lines
273 B
Bash
Executable File
export RUSTFLAGS="-Cinstrument-coverage"
|
|
export LLVM_PROFILE_FILE="prof/%p-%m.profraw"
|
|
rm -r ./prof
|
|
cargo test
|
|
cargo run --example trace
|
|
cargo run --example trees
|
|
grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o ./target/debug/coverage/
|