E. Scott Daniels | 4e4fb50 | 2020-03-24 12:28:06 -0400 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # vim: ts=4 sw=4 noet: |
| 3 | |
| 4 | #================================================================================== |
| 5 | # Copyright (c) 2020 Nokia |
| 6 | # Copyright (c) 2020 AT&T Intellectual Property. |
| 7 | # |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | #================================================================================== |
| 20 | |
| 21 | # |
| 22 | # Mnemonic: scrub_gcov.sh |
| 23 | # Abstract: Gcov (sadly) outputs for any header file that we pull. |
| 24 | # this scrubs any gcov that doesnt look like it belongs |
| 25 | # to our code. |
| 26 | # |
| 27 | # Date: 24 March 2020 |
| 28 | # Author: E. Scott Daniels |
| 29 | # ----------------------------------------------------------------------------- |
| 30 | |
| 31 | |
| 32 | # Make a list of our modules under test so that we don't look at gcov |
| 33 | # files that are generated for system lib headers in /usr/* |
| 34 | # (bash makes the process of building a list of names harder than it |
| 35 | # needs to be, so use caution with the printf() call.) |
| 36 | # |
| 37 | function mk_list { |
| 38 | for f in *.gcov |
| 39 | do |
| 40 | if ! grep -q "Source:\.\./src" $f |
| 41 | then |
| 42 | printf "$f " # do NOT use echo or add \n! |
| 43 | fi |
| 44 | done |
| 45 | } |
| 46 | |
E. Scott Daniels | 4e4fb50 | 2020-03-24 12:28:06 -0400 | [diff] [blame] | 47 | list=$( mk_list ) |
| 48 | if [[ -n $list ]] |
| 49 | then |
| 50 | rm $list |
| 51 | fi |