#!/usr/bin/perl # Prior to 2.26, an invalid regexp in a -f-specified file would elicit # a diagnostic like "Unmatched [ or [^", with no indication of the # file or line number from which the offending regular expression came. # With 2.26, now, each such diagnostic has a "FILENAME:LINENO: " prefix. # Copyright (C) 2016-2020 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . use strict; (my $program_name = $0) =~ s|.*/||; my $prog = 'grep'; my $full_prog_name = `$prog --no-such-option 2>&1`; $full_prog_name =~ s/:.*//s; $prog = $full_prog_name if $full_prog_name; # Turn off localization of executable's output. @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3; # There are at least two variants of one diagnostic: # - Unmatched [, [^, [:, [., or [= # - Unmatched [ or [^ # Transform each to this: "Unmatched [..." my $err_subst = {ERR_SUBST => 's/(: Unmatched \[).*/$1.../'}; my @Tests = ( # Show that grep now includes filename:lineno in the diagnostic: ['invalid-re', '-f g', {AUX=>{g=>"1\n2\n3\n4[[\n"}}, {EXIT=>2}, $err_subst, {ERR => "$prog: g:4: Unmatched [...\n"}, ], # Show that with two or more errors, grep now prints all diagnostics: ['invalid-re-2-files', '-f g -f h', {EXIT=>2}, {AUX=>{g=>"1\n2[[\n3\n4[[\n"}}, {AUX=>{h=>"\n\n[[\n"}}, $err_subst, {ERR => "$prog: g:2: Unmatched [...\n" . "$prog: g:4: Unmatched [...\n" . "$prog: h:3: Unmatched [...\n" }, ], # Like the above, but on the other lines. ['invalid-re-2-files2', '-f g -f h', {EXIT=>2}, {AUX=>{g=>"1[[\n2\n3[[\n4\n"}}, {AUX=>{h=>"[[\n[[\n\n"}}, $err_subst, {ERR => "$prog: g:1: Unmatched [...\n" . "$prog: g:3: Unmatched [...\n" . "$prog: h:1: Unmatched [...\n" . "$prog: h:2: Unmatched [...\n" }, ], # Show that with two '-e'-specified erroneous regexps, # there is no file name or line number. ['invalid-re-2e', '-e "[[" -e "[["', {EXIT=>2}, $err_subst, {ERR => "$prog: Unmatched [...\n" x 2}, ], ); my $save_temps = $ENV{DEBUG}; my $verbose = $ENV{VERBOSE}; my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose); exit $fail;