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: unit_test.sh |
| 29 | # Abstract: This drives the unit tests and combs out the needed .gcov |
| 30 | # files which are by some magic collected for Sonar. |
| 31 | # |
| 32 | # Date: 23 March 2020 |
| 33 | # Author: E. Scott Daniels |
| 34 | # ----------------------------------------------------------------------------- |
| 35 | |
| 36 | |
| 37 | # Make a list of our modules under test so that we don't look at gcov |
| 38 | # files that are generated for system lib headers in /usr/* |
| 39 | # (bash makes the process of building a list of names harder than it |
| 40 | # needs to be, so use caution with the printf() call.) |
| 41 | # |
| 42 | function mk_list { |
| 43 | grep -l "Source:\.\./src" *.gcov | while read f |
| 44 | do |
| 45 | printf "$f " # do NOT use echo or add \n! |
| 46 | done |
| 47 | } |
| 48 | |
| 49 | function abort_if_error { |
| 50 | if (( $1 == 0 )) |
| 51 | then |
| 52 | return |
| 53 | fi |
| 54 | |
| 55 | if [[ -n /tmp/PID$$.log ]] |
| 56 | then |
| 57 | $spew /tmp/PID$$.log |
| 58 | fi |
| 59 | echo "abort: $2" |
| 60 | |
| 61 | rm -f /tmp/PID$$.* |
| 62 | exit 1 |
| 63 | } |
| 64 | |
| 65 | # ------------------------------------------------------------------------- |
| 66 | |
| 67 | spew="cat" # default to dumping all make output on failure (-q turns it to ~40 lines) |
| 68 | |
| 69 | while [[ $1 == "-"* ]] |
| 70 | do |
| 71 | case $1 in |
E. Scott Daniels | f7b9695 | 2020-04-29 10:07:53 -0400 | [diff] [blame] | 72 | -q) spew="head -40";; # how much to dump on build error |
Ron Shacham | e7dfeb8 | 2020-04-24 14:46:48 -0400 | [diff] [blame] | 73 | -v) spew="cat";; |
| 74 | esac |
| 75 | |
| 76 | shift |
| 77 | done |
| 78 | |
E. Scott Daniels | f7b9695 | 2020-04-29 10:07:53 -0400 | [diff] [blame] | 79 | if [[ ! -f unit_test.cpp ]] |
| 80 | then |
| 81 | echo "[PASS] no unit test source exists" |
| 82 | exit 0 |
| 83 | fi |
| 84 | |
Ron Shacham | e7dfeb8 | 2020-04-24 14:46:48 -0400 | [diff] [blame] | 85 | make nuke >/dev/null |
| 86 | make unit_test >/tmp/PID$$.log 2>&1 |
| 87 | abort_if_error $? "unable to make" |
| 88 | |
E. Scott Daniels | f7b9695 | 2020-04-29 10:07:53 -0400 | [diff] [blame] | 89 | spew="cat" # after we build, dump everything on error |
Ron Shacham | e7dfeb8 | 2020-04-24 14:46:48 -0400 | [diff] [blame] | 90 | ./unit_test >/tmp/PID$$.log 2>&1 |
| 91 | abort_if_error $? "unit test failed" |
| 92 | |
| 93 | gcov unit_test >/tmp/PID$$.gcov_log 2>&1 # suss out our gcov files |
| 94 | ./scrub_gcov.sh # remove cruft |
| 95 | |
| 96 | list=$( mk_list ) |
| 97 | echo "[INFO] coverage stats, discounted (raw), for the various modules:" |
| 98 | ./parse_gcov.sh $list # generate simple, short, coverage stats |
| 99 | |
| 100 | rm -f /tmp/PID$$.* |
| 101 | |