maint: post-release version bump to 1.17.0.90
[automake.git] / t / ax / extract-testsuite-summary.pl
blobc53afc9bf82ae6102a4cfbb2f1899617a6f6d3e0
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-2024 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];