summaryrefslogtreecommitdiff
path: root/tests/filename-lineno.pl
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2020-10-05 00:26:51 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2020-10-05 00:49:29 -0700
commita588951ee04a4e8924e98c350f44586c1869f19d (patch)
tree1ea34053e5bbbd004affadd920a1c3a2dc3ba203 /tests/filename-lineno.pl
parenta0bc7ca891ec1b022375b634d743a6c9a09b81c3 (diff)
downloadgrep-a588951ee04a4e8924e98c350f44586c1869f19d.tar.gz
tests: fix tests when PCRE is not used
* tests/Makefile.am (TESTS_ENVIRONMENT): Set PATH before setting PCRE_WORKS, so that the latter test uses the just-built grep. * tests/filename-lineno.pl (invalid-re-P-paren) (invalid-re-P-star-paren): Adjust non-PCRE case to match recently-changed behavior.
Diffstat (limited to 'tests/filename-lineno.pl')
-rwxr-xr-xtests/filename-lineno.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/filename-lineno.pl b/tests/filename-lineno.pl
index 82b48cd8..98780d6b 100755
--- a/tests/filename-lineno.pl
+++ b/tests/filename-lineno.pl
@@ -100,13 +100,13 @@ my @Tests =
['invalid-re-P-paren', '-P ")"', {EXIT=>2},
{ERR => $ENV{PCRE_WORKS} == 1
? "$prog: unmatched parentheses\n"
- : "Perl matching not supported in a --disable-perl-regexp build\n"
+ : "$prog: Perl matching not supported in a --disable-perl-regexp build\n"
},
],
['invalid-re-P-star-paren', '-P "a.*)"', {EXIT=>2},
{ERR => $ENV{PCRE_WORKS} == 1
- ? "$prog: unmatched parentheses\n"
- : "Perl matching not supported in a --disable-perl-regexp build\n"
+ ? "$prog: unmatched parentheses $ENV{PCRE_WORKS}\n"
+ : "$prog: Perl matching not supported in a --disable-perl-regexp build\n"
},
],