1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#!/usr/bin/perl
# %CopyrightBegin%
#
# SPDX-License-Identifier: Apache-2.0
#
# Copyright Ericsson AB 2019-2025. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# %CopyrightEnd%
use strict;
use warnings;
@ARGV == 2 or die "Usage: gcov-gen-html \$ERL_TOP <output directory>\n";
my $srcdir = shift @ARGV;
my $outdir = shift @ARGV;
my $verbose = 1;
my $flavor = "{smp,jit}";
# setup filenames and paths, observe geninfos --base-directory
# it needs a correct path just after the $geninfo
my $lcov_path = ""; #/usr/local/bin/";
my $geninfo = $lcov_path . "geninfo --no-checksum --base-directory";
my $genhtml = $lcov_path . "genhtml";
# src paths
my $emu_src_path = "$srcdir/erts/emulator";
my $elib_src_path = "$srcdir/erts/lib_src";
my $pcre_src_path = "$emu_src_path";
my $zlib_src_path = "$emu_src_path";
# obj paths
my $emu_obj_path = <$emu_src_path/obj/*-linux-*/gcov/$flavor>;
my $elib_obj_path = <$elib_src_path/obj/*-linux-*/gcov>;
my $pcre_obj_path = <$emu_src_path/pcre/obj/*-linux-*/gcov>;
my $zlib_obj_path = <$emu_src_path/zlib/obj/*-linux-*/gcov>;
# info files
my $emu_info = "$srcdir/emulator-cover.info";
my $elib_info = "$srcdir/elib-cover.info";
my $pcre_info = "$srcdir/pcre-cover.info";
my $infofiles = "$emu_info $elib_info $pcre_info";
run("$geninfo $emu_src_path -o $emu_info $emu_obj_path");
run("$geninfo $elib_src_path -o $elib_info $elib_obj_path");
run("$geninfo $pcre_src_path -o $pcre_info $pcre_obj_path");
if (<$zlib_obj_path/*.o>) {
my $zlib_info = "$srcdir/zlib-cover.info";
$infofiles .= " $zlib_info";
run("$geninfo $zlib_src_path -o $zlib_info $zlib_obj_path");
}
run("$genhtml -o $outdir $infofiles");
sub run {
my $cmd = shift;
print STDERR "\nrun($cmd)\n" if $verbose > 0;
system("$cmd 2>&1") == 0 or die "\nCan't run \"$cmd\": $?";
}
|