On Sun, Sep 26, 2010 at 23:14, Elijah Newren [off-list ref] wrote:
test_expect_success 'did not use upload-pack service' '
- grep '/git-upload-pack' <"$HTTPD_ROOT_PATH"/access.log >act
- : >exp
+ grep '/git-upload-pack' <"$HTTPD_ROOT_PATH"/access.log >act &&
+ >exp &&
test_cmp exp act
'
This test started failing in pu, I'm presuming you didn't spot it
since you didn't run the tests with GIT_TEST_HTTPD=1.
Anyway, that grep should be a "! grep" to work with &&.