-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent diff machinery from examining assume-unchanged entries on wor…
…ktree Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Nguyễn Thái Ngọc Duy
authored and
Junio C Hamano
committed
Aug 12, 2009
1 parent
efd1796
commit 540e694
Showing
2 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/sh | ||
|
||
test_description='diff with assume-unchanged entries' | ||
|
||
. ./test-lib.sh | ||
|
||
# external diff has been tested in t4020-diff-external.sh | ||
|
||
test_expect_success 'setup' ' | ||
echo zero > zero && | ||
git add zero && | ||
git commit -m zero && | ||
echo one > one && | ||
echo two > two && | ||
git add one two && | ||
git commit -m onetwo && | ||
git update-index --assume-unchanged one && | ||
echo borked >> one && | ||
test "$(git ls-files -v one)" = "h one" | ||
' | ||
|
||
test_expect_success 'diff-index does not examine assume-unchanged entries' ' | ||
git diff-index HEAD^ -- one | grep -q 5626abf0f72e58d7a153368ba57db4c673c0e171 | ||
' | ||
|
||
test_expect_success 'diff-files does not examine assume-unchanged entries' ' | ||
rm one && | ||
test -z "$(git diff-files -- one)" | ||
' | ||
|
||
test_done |