gsim 1.1.4

High speed digital logic simulation
Documentation
1
2
3
4
5
6
7
8
9
$env:CARGO_INCREMENTAL=0
$env:RUSTFLAGS='-Cinstrument-coverage'
$env:LLVM_PROFILE_FILE='cargo-test-%p-%m.profraw'
& cargo test
if (!(Test-Path -Path ./target/coverage/)) {
    New-Item -ItemType Directory -Path ./target/coverage/
}
& grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/tests.lcov
Remove-Item cargo-test-*-*.profraw