summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fb63d7f)
raw | patch | inline | side by side (parent: fb63d7f)
author | Junio C Hamano <gitster@pobox.com> | |
Mon, 12 Nov 2007 02:44:16 +0000 (18:44 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 12 Nov 2007 02:44:16 +0000 (18:44 -0800) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t2200-add-update.sh | patch | blob | history |
diff --git a/t/t2200-add-update.sh b/t/t2200-add-update.sh
index eb1ced3c371ecaeab9d0dc14be888bf7df110483..24f892f79386478fd5f1162654cb9b72d940bbe4 100755 (executable)
--- a/t/t2200-add-update.sh
+++ b/t/t2200-add-update.sh
#!/bin/sh
-test_description='git add -u with path limiting
+test_description='git add -u
This test creates a working tree state with three files:
dir/other (untracked)
and issues a git add -u with path limiting on "dir" to add
-only the updates to dir/sub.'
+only the updates to dir/sub.
+
+Also tested are "git add -u" without limiting, and "git add -u"
+without contents changes.'
. ./test-lib.sh
'
+test_expect_success 'add everything changed' '
+
+ git add -u &&
+ test -z "$(git diff-files)"
+
+'
+
+test_expect_success 'touch and then add -u' '
+
+ touch check &&
+ git add -u &&
+ test -z "$(git diff-files)"
+
+'
+
+test_expect_success 'touch and then add explicitly' '
+
+ touch check &&
+ git add check &&
+ test -z "$(git diff-files)"
+
+'
+
test_done