blob: 6473dfd0155510e1ca7378d98f04257b55657498 [file] [log] [blame]
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08001#!/bin/bash
Jan Tattermusch7897ae92017-06-07 22:57:36 +02002# Copyright 2015 gRPC authors.
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08003#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08007#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02008# http://www.apache.org/licenses/LICENSE-2.0
Jan Tattermusch1970a5b2015-03-03 15:17:25 -08009#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jan Tattermusch1970a5b2015-03-03 15:17:25 -080015
16set -ex
17
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -070018if [ "$CONFIG" != "gcov" ] ; then exit ; fi
Jan Tattermusch9a5c4f52015-07-24 23:22:59 -070019
Jan Tattermusch1970a5b2015-03-03 15:17:25 -080020# change to gRPC repo root
Mehrdad Afsharid8ef4882017-06-27 14:45:09 -070021cd "$(dirname "$0")/../../.."
Jan Tattermusch1970a5b2015-03-03 15:17:25 -080022
Jan Tattermusch38ed2cf2016-04-09 16:24:16 -070023# Generate the csharp extension coverage report
24gcov objs/gcov/src/csharp/ext/*.o
25lcov --base-directory . --directory . -c -o coverage.info
26lcov -e coverage.info '**/src/csharp/ext/*' -o coverage.info
27genhtml -o reports/csharp_ext_coverage --num-spaces 2 \
28 -t 'gRPC C# native extension test coverage' coverage.info \
29 --rc genhtml_hi_limit=95 --rc genhtml_med_limit=80 --no-prefix