diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-14 15:17:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-14 15:17:07 -0700 |
commit | f6336167e9f233d3a68c8ded18b172ba50cde743 (patch) | |
tree | 68dc04b198e56b0f03539a648dc2af84c41ee685 /t | |
parent | 611d8139e4e0a78797a0821074fc94a4f8d74b7b (diff) | |
parent | d99ebf081797dbb43ff618ff59f4c607b0acf045 (diff) | |
download | git-f6336167e9f233d3a68c8ded18b172ba50cde743.tar.gz |
Merge branch 'jc/grep-c'
* jc/grep-c:
Split grep arguments in a way that does not requires to add /dev/null.
Documentation/git-config.txt: AsciiDoc tweak to avoid leading dot
Add test to check recent fix to "git add -u"
Documentation/git-archive.txt: a couple of clarifications.
Fix the rename detection limit checking
diff --no-index: do not forget to run diff_setup_done()
Diffstat (limited to 't')
-rwxr-xr-x | t/t2200-add-update.sh | 11 | ||||
-rwxr-xr-x | t/t7002-grep.sh | 4 |
2 files changed, 14 insertions, 1 deletions
diff --git a/t/t2200-add-update.sh b/t/t2200-add-update.sh index 61d08bb431..eb1ced3c37 100755 --- a/t/t2200-add-update.sh +++ b/t/t2200-add-update.sh @@ -16,11 +16,12 @@ only the updates to dir/sub.' test_expect_success setup ' echo initial >check && echo initial >top && + echo initial >foo && mkdir dir1 dir2 && echo initial >dir1/sub1 && echo initial >dir1/sub2 && echo initial >dir2/sub3 && - git add check dir1 dir2 top && + git add check dir1 dir2 top foo && test_tick git-commit -m initial && @@ -76,4 +77,12 @@ test_expect_success 'change gets noticed' ' ' +test_expect_success 'replace a file with a symlink' ' + + rm foo && + ln -s top foo && + git add -u -- foo + +' + test_done diff --git a/t/t7002-grep.sh b/t/t7002-grep.sh index 6bfb899ed1..68b2b92879 100755 --- a/t/t7002-grep.sh +++ b/t/t7002-grep.sh @@ -107,6 +107,10 @@ do diff expected actual ' + test_expect_failure "grep -c $L (no /dev/null)" ' + git grep -c test $H | grep -q "/dev/null" + ' + done test_done |