3 #==================================================================================
4 # Copyright (c) 2019 Nokia
5 # Copyright (c) 2018-2019 AT&T Intellectual Property.
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #==================================================================================
22 # Mnemonic: cov2xml.ksh
23 # Abstract: Process the coverage file(s) which are read from standard in
24 # to generate a single set of XML output that Sonar can ingest.
26 # cat *.gcov | cov2xml.ksh >file.xml
28 # The XML generated is based on the Sonar doc:
29 # https://docs.sonarqube.org/latest/analysis/generic-test/
32 # Author: E. Scott Daniels
33 # -------------------------------------------------------------------------
37 printf( "<coverage version=\"1\">\n" ) # sonar is VERY picky about this
41 printf( "</coverage>\n" )
44 function start_file( name ) {
45 printf( "<file path=\"%s\">\n", name )
48 function end_file( ) {
52 function good_line( num ) {
54 printf( "<lineToCover lineNumber=\"%d\" covered=\"true\"/>\n", num )
58 function bad_line( num ) {
60 printf( "<lineToCover lineNumber=\"%d\" covered=\"false\"/>\n", num )
69 gsub( "../src", "src", $0 ) # sonar doesnt view test dir as root, so strip
70 n = split( $0, a, ":" )
79 /-:/ { next } # not executable
81 /#####:/ { # never executed