]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gprofng/testsuite/gprofng.display/mttest/check_results.pl
gprofng: a new GNU profiler
[thirdparty/binutils-gdb.git] / gprofng / testsuite / gprofng.display / mttest / check_results.pl
1 #!/bin/sh -- # This comment tells perl not to loop!
2
3 # Copyright (C) 2021 Free Software Foundation, Inc.
4 #
5 # This file is part of the GNU Binutils.
6 #
7 # This file is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 # MA 02110-1301, USA.
21
22 eval 'exec ${PERL:=/usr/bin/perl} -S $0 ${1+"$@"}'
23 if 0;
24
25 use strict;
26 use File::Basename;
27 require "acct.pm";
28
29 # XXX This needs better documentation. Or any, really.
30 # e.g. what does (1, 2, 3) signify?
31 sub read_acct
32 {
33 my ($fname) = @_;
34 my(@checkTime, $nlines);
35 @checkTime = (1, 2, 3);
36 acct::readAcct($fname, @checkTime);
37 if (exists $acct::Acct{"*"})
38 {
39 printf "Signal lost\n";
40 exit 1;
41 }
42 }
43
44 read_acct($ARGV[0]);
45 acct::read_er_print_out($ARGV[1], -1);
46 exit acct::createDiff();