]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gprofng/testsuite/gprofng.display/mttest/check_results.pl
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gprofng / testsuite / gprofng.display / mttest / check_results.pl
CommitLineData
bb368aad
VM
1#!/bin/sh -- # This comment tells perl not to loop!
2
fd67aa11 3# Copyright (C) 2021-2024 Free Software Foundation, Inc.
bb368aad
VM
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
22eval 'exec ${PERL:=/usr/bin/perl} -S $0 ${1+"$@"}'
23if 0;
24
25use strict;
26use File::Basename;
27require "acct.pm";
28
29# XXX This needs better documentation. Or any, really.
30# e.g. what does (1, 2, 3) signify?
31sub 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
44read_acct($ARGV[0]);
45acct::read_er_print_out($ARGV[1], -1);
46exit acct::createDiff();