forked from tari-project/randomx-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code_coverage.sh
executable file
·70 lines (60 loc) · 1.77 KB
/
code_coverage.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
# Prerequisites
# 1. You need LLVM-COV tools:
# $ rustup component add llvm-tools-preview
# 2. and Rust wrappers for llvm-cov:
# $ cargo install cargo-binutils
# 3. The rust name demangler
# $ cargo install rustfilt
# 4. jq
# 5. genhtml
# $ sudo apt install lcov
NAME="randomx-rs"
RUSTFLAGS="-Zinstrument-coverage"
LLVM_PROFILE_FILE="./cov_raw/$NAME-%m.profraw"
get_binaries() {
files=$(
RUSTFLAGS=$RUSTFLAGS cargo test --tests --no-run --message-format=json |
jq -r "select(.profile.test == true) | .filenames[]" |
grep -v dSYM -
)
files=("${files[@]/#/-object }")
}
get_binaries
# echo "files: $files"
# Remove old coverage files
rm cov_raw/*profraw cov_raw/$NAME.profdata cov_raw/$NAME.lcov cov_raw/$NAME.txt
RUSTFLAGS=$RUSTFLAGS LLVM_PROFILE_FILE=$LLVM_PROFILE_FILE cargo test --tests
cargo profdata -- \
merge -sparse ./cov_raw/$NAME*.profraw -o ./cov_raw/$NAME.profdata
cargo cov -- \
export \
--Xdemangler=rustfilt \
--format=lcov \
--show-branch-summary \
--show-instantiation-summary \
--show-region-summary \
--ignore-filename-regex='\.cargo' \
--ignore-filename-regex="rustc" \
--ignore-filename-regex="\.git" \
--instr-profile=cov_raw/$NAME.profdata \
$files \
>cov_raw/$NAME.lcov
cargo cov -- \
show \
--Xdemangler=rustfilt \
--show-branch-summary \
--show-instantiation-summary \
--show-region-summary \
--ignore-filename-regex='\.cargo' \
--ignore-filename-regex="rustc" \
--ignore-filename-regex="\.git" \
--instr-profile=cov_raw/$NAME.profdata \
$files \
>cov_raw/$NAME.txt
if [ -z ${SKIP_HTML+x} ]; then
genhtml -o coverage_report cov_raw/$NAME.lcov
else
echo "Skipping html generation"
fi
# open coverage_report/src/index.html