Merge branch 'maint'
[platform/upstream/automake.git] / t / ax / extract-testsuite-summary.pl
1 #! /usr/bin/env perl
2 # Extract the testsuite summary generated by the parallel testsuite
3 # harness from the output of "make check".
4
5 # Copyright (C) 2012 Free Software Foundation, Inc.
6
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.
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, see <http://www.gnu.org/licenses/>.
19
20 use warnings FATAL => 'all';
21 use strict;
22
23 my $br = '=' x 76;
24 my @sections = ('');
25 while (<>)
26   {
27     push @sections, $_, '' if /$br/;
28     $sections[-1] .= $_ if !/$br/;
29   }
30 print @sections[1..$#sections-1];