From: Thomas Gummerer Date: Mon, 11 Jan 2016 21:26:19 +0000 (+0100) Subject: t7810: correct --no-index test X-Git-Tag: v2.8.0-rc0~106^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1f5101aee2daa3459cf50f945da924afa78a8ced?ds=sidebyside;hp=1f5101aee2daa3459cf50f945da924afa78a8ced t7810: correct --no-index test GIT_CEILING_DIRECTORIES doesn't prevent chdir up into another directory while looking for a repository directory if it is equal to the current directory. Because of this, the test which claims to test the git grep --no-index command outside of a repository actually tests it inside of a repository. The test_must_fail assertions still pass because the git grep only looks at untracked files and therefore no file matches, but not because it's run outside of a repository as it was originally intended. Set the GIT_CEILING_DIRECTORIES environment variable to the parent directory of the directory in which the git grep command is executed, to make sure it is actually run outside of a git repository. In addition, the && chain was broken in a couple of places in the same test, fix that. Signed-off-by: Thomas Gummerer Signed-off-by: Junio C Hamano ---