From: SZEDER Gábor Date: Sat, 14 Feb 2009 16:16:29 +0000 (+0100) Subject: t1500: more 'git rev-parse --git-dir' tests X-Git-Tag: v1.6.2-rc1~12 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=db7fee8758cfe17b0f06ddae7bb4259ed506240c;p=git.git t1500: more 'git rev-parse --git-dir' tests Extend t1500 with tests of 'git rev-parse --git-dir' when invoked from other directories of the repository or the work tree. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/t/t1500-rev-parse.sh b/t/t1500-rev-parse.sh index 186792e3a..48ee07779 100755 --- a/t/t1500-rev-parse.sh +++ b/t/t1500-rev-parse.sh @@ -37,17 +37,17 @@ test_rev_parse() { ROOT=$(pwd) -test_rev_parse toplevel false false true '' +test_rev_parse toplevel false false true '' .git cd .git || exit 1 -test_rev_parse .git/ false true false '' +test_rev_parse .git/ false true false '' . cd objects || exit 1 test_rev_parse .git/objects/ false true false '' "$ROOT/.git" cd ../.. || exit 1 mkdir -p sub/dir || exit 1 cd sub/dir || exit 1 -test_rev_parse subdirectory false false true sub/dir/ +test_rev_parse subdirectory false false true sub/dir/ "$ROOT/.git" cd ../.. || exit 1 git config core.bare true