mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-18 23:02:35 +03:00
7d2cbb2ec2
finished coverage tests. adding case by case tests from the parser fuzzer next
11 lines
417 B
Batchfile
11 lines
417 B
Batchfile
cargo clean
|
|
cd compiler/parser
|
|
set RUSTFLAGS=-Cinstrument-coverage
|
|
cargo +nightly build
|
|
set LLVM_PROFILE_FILE=../../target/out/leo_coverage-%%p-%%m.profraw
|
|
cargo +nightly test -- test::parser_tests --exact --nocapture
|
|
grcov ../../target/out -s . --binary-path ../../target/debug/ -t html --branch --ignore-not-existing -o ../../target/debug/coverage/
|
|
cd ../..
|
|
del default.profraw
|
|
set RUSTFLAGS=
|
|
set LLVM_PROFILE_FILE= |