diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2018-11-20 09:43:43 +0100 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2018-11-20 09:43:50 +0100 |
commit | 3a0c72ff6b3f57a4f18fea102254f272dcb0593d (patch) | |
tree | 9edc0c28d2f13b172e103d274cc647d3f1cb0e28 /tools | |
parent | 667a17c1f36847c74d95e5edb91f6704a50e033f (diff) |
remove an unneeded shell script
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/helper_scripts/run_lcov.sh | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/run_tests/helper_scripts/run_lcov.sh b/tools/run_tests/helper_scripts/run_lcov.sh deleted file mode 100755 index 9d8b6793fc..0000000000 --- a/tools/run_tests/helper_scripts/run_lcov.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -# Copyright 2015 gRPC authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -set -ex - -out=$(readlink -f "${1:-coverage}") - -root=$(readlink -f "$(dirname "$0")/../../..") -shift || true -tmp=$(mktemp) -cd "$root" -tools/run_tests/run_tests.py -c gcov -l c c++ "$@" || true -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 |