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