From: Junio C Hamano <hidden> Date: 2016-06-15 22:46:17
Jay Soffian [off-list ref] writes:
On Thu, Feb 26, 2009 at 4:48 PM, Junio C Hamano [off-list ref] wrote:
quoted
So perhaps define a variable:
good="\"\(PUT\|MOVE\) .*/objects/$x2/${x38}_$x40 HTTP/[.0-9]*" 20[0-9]\""
and grep for it?
Hmpfh. According to my re_format man page:
Obsolete (``basic'') regular expressions differ in several respects.
`|' is an ordinary character and there is no equivalent for its
functionality.
Ahh, you are right; there is no '|'-alternation in BRE.
We of course could do something like:
good=" .*/objects/$x2/${x38}_$x40 HTTP/[.0-9]*" 20[0-9]\""
grep -e "\"PUT $good" -e "\"MOVE $good"
But that's too ugly.
I don't mind Perl as we already depend on it; the looseness of the regexp
stil bothers me somewhat, though...
From: Jay Soffian <hidden> Date: 2016-06-15 22:46:17
On Thu, Feb 26, 2009 at 5:37 PM, Junio C Hamano [off-list ref] wrote:
I don't mind Perl as we already depend on it; the looseness of the regexp
stil bothers me somewhat, though...
I think you're letting the perfect be the enemy of the good. The point
of the test is merely to check for the SHA-1 has suffix in PUT/MOVE
operations. Any of my suggestions so far are better than what is there
now. Why so much fuss?
I'll send one more iteration, and if that's not good enough, I give up.
j.
From: Jay Soffian <hidden> Date: 2016-06-15 22:46:17
OS X's GNU grep does not support -P/--perl-regexp.
We use a basic RE instead, and simplify the pattern slightly by
replacing '+' with '*' so it can be more easily expressed using a basic
RE. The important part of pattern, checking for a SHA-1 has suffix in
the successful PUT/MOVE operations, remains the same. Here are samples
of what we want to match:
127.0.0.1 - - [26/Feb/2009:22:38:13 +0000] "PUT /test_repo.git/objects/3e/a4fbb9e18a401a6463c595d08118fcb9fb7426_fab55116904c665a95438bcc78521444a7db6096 HTTP/1.1" 201 277
127.0.0.1 - - [26/Feb/2009:22:38:13 +0000] "MOVE /test_repo.git/objects/3e/a4fbb9e18a401a6463c595d08118fcb9fb7426_fab55116904c665a95438bcc78521444a7db6096 HTTP/1.1" 201 277
Signed-off-by: Jay Soffian <redacted>
---
Junio,
This is the best I can do. If it's not good enough, and you'd rather
have the existing non-portable grep -P, so be it.
t/t5540-http-push.sh | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)