mirror of https://github.com/grpc/grpc.git
commit
6061f2b605
8 changed files with 46 additions and 13 deletions
@ -1 +0,0 @@ |
||||
Subproject commit f7d92c63928a1460f3d99b9bc418bd3b686a0dca |
@ -0,0 +1,18 @@ |
||||
#!/bin/bash |
||||
|
||||
set -ex |
||||
|
||||
out=`realpath ${1:-coverage}` |
||||
|
||||
root=`realpath $(dirname $0)/../..` |
||||
tmp=`mktemp` |
||||
cd $root |
||||
tools/run_tests/run_tests.py -c gcov |
||||
lcov --capture --directory . --output-file $tmp |
||||
genhtml $tmp --output-directory $out |
||||
rm $tmp |
||||
if which xdg-open > /dev/null |
||||
then |
||||
xdg-open file://$out/index.html |
||||
fi |
||||
|
Loading…
Reference in new issue