Page MenuHomeFreeBSD

bsdgrep(1): Don't output matches with -c, -l flag, and -L flags
ClosedPublic

Authored by kevans on May 5 2017, 3:42 AM.
Tags
None
Referenced Files
F81689847: D10607.id28050.diff
Fri, Apr 19, 11:57 PM
F81650051: D10607.diff
Fri, Apr 19, 11:26 AM
Unknown Object (File)
Mar 21 2024, 4:33 AM
Unknown Object (File)
Mar 20 2024, 4:39 PM
Unknown Object (File)
Feb 11 2024, 9:23 AM
Unknown Object (File)
Jan 31 2024, 2:16 AM
Unknown Object (File)
Jan 30 2024, 10:42 AM
Unknown Object (File)
Jan 30 2024, 3:57 AM
Subscribers

Details

Summary

Refactoring done in rS317703 broke -c, -l, and -L flags implying suppression of
match printing. Fortunately, this is just a matter of not doing any printing
of the resulting matches and context printing was not broken in this refactoring.

Add some regression tests since this area may still see further refactoring, include
different context flags as well even though they were not broken in this case.

Reported by: markj@
PR: 219077

Test Plan

Ensure no regressions in Kyua tests, test build libsysdecode with bsdgrep
installed as /usr/bin/grep as in the reported PR.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

  • Remove changes snuck into the revision that did not appear in the diff I did beforehand...

LGTM minus what I guess is an accidental change to bnxt.

sys/dev/bnxt/bnxt.h
81 ↗(On Diff #28047)

Unrelated change?

This revision is now accepted and ready to land.May 5 2017, 3:44 AM
In D10607#220010, @cem wrote:

LGTM minus what I guess is an accidental change to bnxt.

Yeah, I always diff it against 'master' (git) before submission, but this didn't show up so I'm guessing I should be diffing against...something else. It's slightly confusing, though, because this is the only machine that I actually manipulate this repo and its remotes on.

In D10607#220014, @kevans91_ksu.edu wrote:

Yeah, I always diff it against 'master' (git) before submission, but this didn't show up so I'm guessing I should be diffing against...something else. It's slightly confusing, though, because this is the only machine that I actually manipulate this repo and its remotes on.

How do you create the review? I tend to use arc diff --allow-untracked --create HEAD^, so I'd guess I'd diff HEAD against HEAD^. If you're creating a review against master instead of HEAD^, I think diffing against it is correct. I don't know :-).

kevans edited edge metadata.
  • Further inspection showed problem a little more widespread, having broken -c, -l, and -L. Add appropriate tests for all of them, making sure that context still doesn't break them for some reason (except for -L, since it's explicitly non-match)
  • Use a 'printmatch' bool, similar to 'doctx,' so that we're not checking all of the flags every iteration in some cases and to be consistent with context printing
This revision now requires review to proceed.May 5 2017, 4:06 AM
kevans retitled this revision from bsdgrep(1): Don't output matches with -l flag, only filenames to bsdgrep(1): Don't output matches with -c, -l flag, and -L flags.May 5 2017, 4:19 AM
kevans edited the summary of this revision. (Show Details)
  • Go final step further, simplify doctx checking to whether we're printing matches and context flags are used
usr.bin/grep/util.c
244 ↗(On Diff #28049)

Shouldn't pc.binary be (pc.binary && binbehave != BINFILE_TEXT) (is a binary file and -a or --binary-files=text is specified)? If so, this probably deserves its own testcase.

I actually don't bother specifying diff target, just arc diff --create and let it default. I should probably be more specific to it so that I don't get surprises like this. =)

usr.bin/grep/util.c
244 ↗(On Diff #28049)

It looks like you incorporated some of my recommendations while I was typing this up, but I'm still curious about BINFILE_BIN vs BINFILE_TEXT.

Also, if you could add some more testcases for -I/--binary-files behavior w.r.t. these flags, that would be awesome :).

usr.bin/grep/util.c
244 ↗(On Diff #28049)

Indeed- I tossed around != BINFILE_TEXT and == BINFILE_BIN, and determined that == BINFILE_BIN might be a little bit better. BINFILE_SKIP and BINFILE_TEXT are both harmless since the former breaks out before any printing and the latter is, well, what it is. I think that we're less likely to add another BINFILE_* value that gets treated as BINFILE_BIN than we are to add another BINFILE_* flag that allows safe behavior here.

re: binary file test cases, I wish to do that in a separate patch if that's alright. Our test coverage for all of the binary file behaviors is currently at 0%, aside from context2 that forces what would otherwise be detected as a 'binary' file to be detected as text through -z/--null-data. I don't entirely count that as testing binary behavior, though, so 0% is a final number.

I think it makes sense to create a single binary test that checks -a, -I, -U, and --binary-files= with the couple of different combinations that could feasibly break things.

ngie added inline comments.
usr.bin/grep/util.c
244 ↗(On Diff #28049)

Sounds good to me -- thanks for the reply!

This revision is now accepted and ready to land.May 5 2017, 5:15 AM
This revision was automatically updated to reflect the committed changes.