Verify a few more commands and pathname variants. Signed-off-by: Robin Rosenberg <robin.rosenberg@xxxxxxxxxx> --- t/t7010-setup.sh | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) These are a few testcases from my earlier attempt at this. The log and commit cases succeeded with Junios version, but not blame and some of the nastier versions for git add (same principle for all commands, just that I use add as an example) -- robin diff --git a/t/t7010-setup.sh b/t/t7010-setup.sh index da20ba5..60c4a46 100755 --- a/t/t7010-setup.sh +++ b/t/t7010-setup.sh @@ -114,4 +114,43 @@ test_expect_success 'git ls-files (relative #3)' ' ' +test_expect_success 'commit using absolute path names' ' + git commit -m "foo" && + echo aa >>a/b/c/d && + git commit -m "aa" "$(pwd)/a/b/c/d" +' + +test_expect_success 'log using absolute path names' ' + echo bb >>a/b/c/d && + git commit -m "bb" $(pwd)/a/b/c/d && + + git log a/b/c/d >f1.txt && + git log "$(pwd)/a/b/c/d" >f2.txt && + diff -u f1.txt f2.txt +' + +test_expect_success 'blame using absolute path names' ' + git blame a/b/c/d >f1.txt && + git blame "$(pwd)/a/b/c/d" >f2.txt && + diff -u f1.txt f2.txt +' + +test_expect_failure 'add a directory outside the work tree' ' + d1="$(cd .. ; pwd)" && + git add "$d1" + echo $? +' + +test_expect_failure 'add a file outside the work tree, nasty case 1' '( + f="$(pwd)x" && + touch "$f" && + git add "$f" +)' + +test_expect_failure 'add a file outside the work tree, nasty case 2' '( + f="$(pwd|sed "s/.$//")x" && + touch "$f" && + git add "$f" +)' + test_done -- 1.5.4.rc4.25.g81cc - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html