Ron Shacham | e7dfeb8 | 2020-04-24 14:46:48 -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 | |
E. Scott Daniels | d846166 | 2021-01-22 08:16:05 -0500 | [diff] [blame] | 21 | # LICENSE NOTE: |
| 22 | # this code is based on the unit test code in the o-ran-sc RMR repositiory which |
| 23 | # is covered by the original license above, and thus that license governs this |
| 24 | # extension as well. |
| 25 | # --------------------------------------------------------------------------------- |
| 26 | |
Ron Shacham | e7dfeb8 | 2020-04-24 14:46:48 -0400 | [diff] [blame] | 27 | # |
| 28 | # Mnemonic: scrub_gcov.sh |
| 29 | # Abstract: Gcov (sadly) outputs for any header file that we pull. |
| 30 | # this scrubs any gcov that doesnt look like it belongs |
| 31 | # to our code. |
| 32 | # |
| 33 | # Date: 24 March 2020 |
| 34 | # Author: E. Scott Daniels |
| 35 | # ----------------------------------------------------------------------------- |
| 36 | |
| 37 | |
| 38 | # Make a list of our modules under test so that we don't look at gcov |
| 39 | # files that are generated for system lib headers in /usr/* |
| 40 | # (bash makes the process of building a list of names harder than it |
| 41 | # needs to be, so use caution with the printf() call.) |
| 42 | # |
| 43 | function mk_list { |
| 44 | for f in *.gcov |
| 45 | do |
| 46 | if ! grep -q "Source:\.\./src" $f |
| 47 | then |
| 48 | printf "$f " # do NOT use echo or add \n! |
| 49 | fi |
| 50 | done |
| 51 | } |
| 52 | |
| 53 | |
| 54 | list=$( mk_list ) |
| 55 | if [[ -n $list ]] |
| 56 | then |
| 57 | rm $list |
| 58 | fi |