Merge branch 'minor'
[automake.git] / t / ax / extract-testsuite-summary.pl
blob284eefdcf9cb35c347113e9d495578bf2e5a5896
1 #! /usr/bin/env perl
2 # Extract the testsuite summary generated by the parallel testsuite
3 # harness from the output of "make check".
5 # Copyright (C) 2012-2017 Free Software Foundation, Inc.
7 # This program 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 2, or (at your option)
10 # any later version.
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.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 use warnings FATAL => 'all';
21 use strict;
23 my $br = '=' x 76;
24 my @sections = ('');
25 while (<>)
27 push @sections, $_, '' if /$br/;
28 $sections[-1] .= $_ if !/$br/;
30 print @sections[1..$#sections-1];