Created
May 26, 2019 05:36
-
-
Save azriel91/a274d3023c9fba41552fdc1905ee838c to your computer and use it in GitHub Desktop.
Script to collect Rust workspace coverage using kcov
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -e | |
# Release options | |
profile=debug | |
# Directories | |
self_dir="$(dirname "$(readlink -f "${BASH_SOURCE}")")" | |
repository_dir="$(dirname "${self_dir}")" | |
target_dir="${repository_dir}/target" | |
target_profile_dir="${target_dir}/${profile}" | |
coverage_dir="${target_dir}/coverage" | |
test -d "${coverage_dir}" || mkdir -p "${coverage_dir}" | |
kcov_exclude_line="kcov-ignore" | |
kcov_exclude_region="kcov-ignore-start:kcov-ignore-end" | |
test_bins_by_crate="$( | |
cargo test --no-run --message-format=json | | |
jq -r "select(.profile.test == true) | (.package_id | split(\" \"))[0] + \";\" + .filenames[]" | |
)" | |
crate_coverage_dirs=() | |
for test_bin_by_crate in $test_bins_by_crate; do | |
crate_name=${test_bin_by_crate%%;*} | |
test_bin_path=${test_bin_by_crate##*;} | |
test_bin_name=${test_bin_path##*/target/debug/} | |
crate_dir="${repository_dir}/${crate_name}" | |
test -d "${crate_dir}" || continue; | |
crate_coverage_dir="${coverage_dir}/${test_bin_name}" | |
crate_coverage_dirs+=("${crate_coverage_dir}") | |
( | |
export CARGO_MANIFEST_DIR="$crate_dir" | |
kcov --include-pattern="${crate_dir}/src/,${crate_dir}/tests/" \ | |
"--exclude-line=${kcov_exclude_line}" \ | |
"--exclude-region=${kcov_exclude_region}" \ | |
"${crate_coverage_dir}" "${test_bin_path}" | |
) | |
done | |
rm -rf "${coverage_dir}/merged" | |
kcov --merge "${coverage_dir}/merged" "${crate_coverage_dirs[@]}" \ | |
"--exclude-line=${kcov_exclude_line}" \ | |
"--exclude-region=${kcov_exclude_region}" \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment