Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-28 03:56:33 +0400
committerJunio C Hamano <gitster@pobox.com>2009-08-28 03:56:33 +0400
commite7c693a8e13593707c9491108d104f43dbcf5bfb (patch)
tree7d6fe6421e2899d93b2ee64b47fc077b343e5a4a /t
parentf203d6969b7cfbb56460d5bf8e99b0a7d1abe03b (diff)
parent540e694b139dd034b21de087001ac9b6d7606c94 (diff)
Merge branch 'nd/sparse' (early part)
* 'nd/sparse' (early part): Prevent diff machinery from examining assume-unchanged entries on worktree
Diffstat (limited to 't')
-rwxr-xr-xt/t4039-diff-assume-unchanged.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/t/t4039-diff-assume-unchanged.sh b/t/t4039-diff-assume-unchanged.sh
new file mode 100755
index 0000000000..9d9498bd95
--- /dev/null
+++ b/t/t4039-diff-assume-unchanged.sh
@@ -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