aboutsummaryrefslogtreecommitdiff
path: root/contrib/netbsd-tests/usr.bin/grep/t_grep.sh
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2021-02-08 18:31:17 +0000
committerKyle Evans <kevans@FreeBSD.org>2021-02-08 18:41:22 +0000
commit3e2d96ac974db823255a6f40b90eeffa6e38d022 (patch)
tree24096dab89ab79ea8108e9b175325922a78f65d4 /contrib/netbsd-tests/usr.bin/grep/t_grep.sh
parent32bf05ad89aaa93f4dd27e3721f4cb52cf57fa03 (diff)
downloadsrc-3e2d96ac974db823255a6f40b90eeffa6e38d022.tar.gz
src-3e2d96ac974db823255a6f40b90eeffa6e38d022.zip
grep: fix -A handling in conjunction with -m match limitation
The basic issue here is that grep, when given -m 1, would stop all line processing once it hit the match count and exit immediately. The problem with exiting immediately is that -A processing only happens when subsequent lines are processed and do not match. The fix here is relatively easy; when bsdgrep matches a line, it resets the 'tail' of the matching context to the value supplied to -A and dumps anything that's been queued up for -B. After the current line has been printed and tail is reset, we check our mcount and do what's needed. Therefore, at the time that we decide we're doing nothing, we know that 'tail' of the context is correct and we can simply continue on if there's still more to pick up. With this change, we still bail out immediately if there's been no -A flag. If -A was supplied, we signal that we should continue on. However, subsequent lines will not even bothere to try and process the line. We have reached the match count, so even if the next line would match then we must process it if it hadn't. Thus, the loop in procfile() can short-circuit and just process the line as a non-match until procmatches() indicates that it's safe to stop. A test has been added to reflect both that we should be picking up the next line and that the next line should be considered a non-match even if it should have been. PR: 253350 MFC-after: 3 days
Diffstat (limited to 'contrib/netbsd-tests/usr.bin/grep/t_grep.sh')
-rwxr-xr-xcontrib/netbsd-tests/usr.bin/grep/t_grep.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/usr.bin/grep/t_grep.sh b/contrib/netbsd-tests/usr.bin/grep/t_grep.sh
index ef3f0617465e..d2539a8250de 100755
--- a/contrib/netbsd-tests/usr.bin/grep/t_grep.sh
+++ b/contrib/netbsd-tests/usr.bin/grep/t_grep.sh
@@ -907,6 +907,22 @@ mflag_body()
atf_check -o inline:"test1:2\n" grep -m 2 -EHc "a|b|e|f" test1
}
+atf_test_case mflag_trail_ctx
+mflag_trail_ctx_head()
+{
+ atf_set "descr" "Check proper handling of -m with trailing context (PR 253350)"
+}
+mflag_trail_ctx_body()
+{
+ printf "foo\nfoo\nbar\nfoo\nbar\nfoo\nbar\n" > test1
+
+ # Should pick up the next line after matching the first.
+ atf_check -o inline:"foo\nfoo\n" grep -A1 -m1 foo test1
+
+ # Make sure the trailer is picked up as a non-match!
+ atf_check -o inline:"1:foo\n2-foo\n" grep -A1 -nm1 foo test1
+}
+
atf_test_case zgrep_multiple_files
zgrep_multiple_files_head()
{
@@ -978,6 +994,7 @@ atf_init_test_cases()
atf_add_test_case fgrep_oflag
atf_add_test_case cflag
atf_add_test_case mflag
+ atf_add_test_case mflag_trail_ctx
atf_add_test_case zgrep_multiple_files
# End FreeBSD
}