From: Brian Gernhardt Date: Mon, 29 Aug 2011 06:42:21 +0000 (-0400) Subject: t5540-http-test: shorten grep pattern X-Git-Tag: v1.7.7-rc1~22^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f6918da789b07fabbc82e189d0bac50a79622828;p=git.git t5540-http-test: shorten grep pattern On OS X, the grep pattern "\"OP .*/objects/$x2/X38_X40 HTTP/[.0-9]*\" 20[0-9] " is too long ($x38 and $x40 represent 38 and 40 copies of [0-9a-f]) for grep to handle. In order to still be able to match this, use the sed invocation to replace what we're looking for with a token. Improved-by: Junio C Hamano Signed-off-by: Brian Gernhardt Signed-off-by: Junio C Hamano --- diff --git a/t/t5540-http-push.sh b/t/t5540-http-push.sh index a266ca563..64767d870 100755 --- a/t/t5540-http-push.sh +++ b/t/t5540-http-push.sh @@ -132,8 +132,12 @@ x38="$x5$x5$x5$x5$x5$x5$x5$x1$x1$x1" x40="$x38$x2" test_expect_success 'PUT and MOVE sends object to URLs with SHA-1 hash suffix' ' - sed -e "s/PUT /OP /" -e "s/MOVE /OP /" "$HTTPD_ROOT_PATH"/access.log | - grep -e "\"OP .*/objects/$x2/${x38}_$x40 HTTP/[.0-9]*\" 20[0-9] " + sed \ + -e "s/PUT /OP /" \ + -e "s/MOVE /OP /" \ + -e "s|/objects/$x2/${x38}_$x40|WANTED_PATH_REQUEST|" \ + "$HTTPD_ROOT_PATH"/access.log | + grep -e "\"OP .*WANTED_PATH_REQUEST HTTP/[.0-9]*\" 20[0-9] " '