blob: 54fc2e73cae8080874ba3fb5957deab07165ee29 [file] [log] [blame]
Ron Shachame7dfeb82020-04-24 14:46:48 -04001#!/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 Danielsd8461662021-01-22 08:16:05 -050021# 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 Shachame7dfeb82020-04-24 14:46:48 -040027#
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#
42function 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
49function 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
67spew="cat" # default to dumping all make output on failure (-q turns it to ~40 lines)
68
69while [[ $1 == "-"* ]]
70do
71 case $1 in
E. Scott Danielsf7b96952020-04-29 10:07:53 -040072 -q) spew="head -40";; # how much to dump on build error
Ron Shachame7dfeb82020-04-24 14:46:48 -040073 -v) spew="cat";;
74 esac
75
76 shift
77done
78
E. Scott Danielsf7b96952020-04-29 10:07:53 -040079if [[ ! -f unit_test.cpp ]]
80then
81 echo "[PASS] no unit test source exists"
82 exit 0
83fi
84
Ron Shachame7dfeb82020-04-24 14:46:48 -040085make nuke >/dev/null
86make unit_test >/tmp/PID$$.log 2>&1
87abort_if_error $? "unable to make"
88
E. Scott Danielsf7b96952020-04-29 10:07:53 -040089spew="cat" # after we build, dump everything on error
Ron Shachame7dfeb82020-04-24 14:46:48 -040090./unit_test >/tmp/PID$$.log 2>&1
91abort_if_error $? "unit test failed"
92
93gcov unit_test >/tmp/PID$$.gcov_log 2>&1 # suss out our gcov files
94./scrub_gcov.sh # remove cruft
95
96list=$( mk_list )
97echo "[INFO] coverage stats, discounted (raw), for the various modules:"
98./parse_gcov.sh $list # generate simple, short, coverage stats
99
100rm -f /tmp/PID$$.*
101