aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-09-26 10:30:39 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-09-26 10:30:39 -0700
commit3948a1bf18c246225f6aa11006e94bb3d396eb62 (patch)
tree3b23a22f8b32309b479ceadb021b505e46c43e3a /bin
parent8b5ec390950f5fdcceb9758e36a479a9e256ae30 (diff)
bin/coverage: a GN version of the coverage script
intended to replace tools/coverage when GYP is gone. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2343243002 Review-Url: https://codereview.chromium.org/2343243002
Diffstat (limited to 'bin')
-rwxr-xr-xbin/coverage58
1 files changed, 58 insertions, 0 deletions
diff --git a/bin/coverage b/bin/coverage
new file mode 100755
index 0000000000..7390d7e638
--- /dev/null
+++ b/bin/coverage
@@ -0,0 +1,58 @@
+#!/bin/sh
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+if [ -z "$1" ]; then
+ cat <<-EOM
+ Usage:
+ $0 SKIA_EXECUTABLE [ARGUMENTS_FOR_EXECUTABLE...]
+
+ Run something like this:
+ $0 dm --src tests
+ or
+ $0 dm --src gm skp
+
+ EOM
+ exit 1
+fi
+
+set -x
+set -e
+
+cd "$(dirname "$0")/.."
+
+EXECUTABLE="$1"
+shift
+
+DIR="$(mktemp -d "${TMPDIR:-/tmp}/skia_coverage_XXXXXXXXXX")"
+BUILD=out/coverage
+
+# Build $EXECUTABLE
+bin/sync
+bin/fetch-gn
+
+#TODO: make this work with Clang.
+ARGS='cc="gcc" cxx="g++" extra_cflags="--coverage" extra_ldflags="--coverage"'
+gn gen --args="$ARGS" "$BUILD"
+
+ninja -C "$BUILD" "$EXECUTABLE"
+
+GCOV="$(realpath tools/gcov_shim)"
+
+# Generate a zero-baseline so files not covered by $EXECUTABLE $@ will
+# still show up in the report. This reads the .gcno files that are
+# created at compile time.
+lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i
+
+# Running the binary generates the real coverage information, the .gcda files.
+"$BUILD"/"$EXECUTABLE" "$@"
+
+lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage
+
+lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
+
+genhtml -q "$DIR"/merged --legend -o "$DIR"/coverage_report --ignore-errors source
+
+xdg-open "$DIR"/coverage_report/index.html