mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-21 21:25:19 +00:00
7e6326b3c5
Signed-off-by: Songqian Li <sionli@tencent.com>
69 lines
1.8 KiB
Bash
Executable File
69 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
# shellcheck source=/dev/null
|
|
source "$HOME"/.cargo/env
|
|
source "$(dirname "$0")/test-util.sh"
|
|
|
|
process_common_args "$@"
|
|
|
|
PROJECT_DIR="/cloud-hypervisor"
|
|
TARGET_DIR="$PROJECT_DIR/target"
|
|
|
|
pushd $PROJECT_DIR || exit
|
|
|
|
export BUILD_TARGET=${BUILD_TARGET-$(uname -m)-unknown-linux-gnu}
|
|
|
|
# GLIBC > 2.31
|
|
GRCOV_RELEASE_URL="https://github.com/mozilla/grcov/releases/download/v0.8.19/grcov-$BUILD_TARGET.tar.bz2"
|
|
wget --quiet "$GRCOV_RELEASE_URL" || exit 1
|
|
tar -xjf "grcov-$BUILD_TARGET.tar.bz2"
|
|
|
|
rustup component add llvm-tools-preview
|
|
|
|
export_lcov() {
|
|
rm "coverage.info"
|
|
|
|
./grcov "$(find . -name 'ch-*.profraw' -print)" -s . \
|
|
--ignore "tests/*" \
|
|
--ignore "test_infra/*" \
|
|
--ignore "performance-metrics/*" \
|
|
--binary-path "$TARGET_DIR/$BUILD_TARGET/release/" \
|
|
--branch --ignore-not-existing -t lcov \
|
|
-o "coverage.info"
|
|
|
|
find . -type f -name 'ch-*.profraw' -exec rm {} \;
|
|
}
|
|
|
|
# Generate HTML report
|
|
export_html() {
|
|
OUTPUT_DIR="$TARGET_DIR/coverage"
|
|
rm -rf $OUTPUT_DIR
|
|
./grcov "$(find . -name 'ch-*.profraw' -print)" -s . \
|
|
--ignore "tests/*" \
|
|
--ignore "test_infra/*" \
|
|
--ignore "performance-metrics/*" \
|
|
--binary-path "$TARGET_DIR/$BUILD_TARGET/release/" \
|
|
--branch --ignore-not-existing -t html \
|
|
-o $OUTPUT_DIR
|
|
find . -type f -name 'ch-*.profraw' -exec rm {} \;
|
|
}
|
|
|
|
# test_binary_args is now a command name. Check if it is a valid command and, if so,
|
|
# run it.
|
|
#
|
|
# shellcheck disable=SC2154
|
|
type=${test_binary_args[*]}
|
|
declare -f "export_$type" >/dev/null
|
|
code=$?
|
|
if [[ $code != 0 ]]; then
|
|
echo "Unknown command: $type. Only support \"lcov\" and \"html\". Change to default command: html"
|
|
type="html"
|
|
fi
|
|
|
|
func=export_$type
|
|
$func
|
|
|
|
popd || exit 1
|