mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:23:00 +00:00
18 lines
383 B
Bash
Executable File
18 lines
383 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cargo +nightly clean
|
|
export RUSTFLAGS="\
|
|
-Zprofile \
|
|
-Ccodegen-units=1 \
|
|
-Copt-level=0 \
|
|
-Clink-dead-code \
|
|
-Coverflow-checks=off \
|
|
"
|
|
export CARGO_INCREMENTAL=0
|
|
|
|
cargo +nightly test
|
|
|
|
grcov ./target/debug/ -s . -t html --llvm --branch --ignore-not-existing -o ./target/debug/coverage/
|
|
|
|
xdg-open target/debug/coverage/index.html
|