-
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.
diff-index: report unmerged new entries
Since an earlier change to diff-index by d1f2d7e (Make run_diff_index() use unpack_trees(), not read_tree(), 2008-01-19), we stopped reporting an unmerged path that does not exist in the tree, but we should. Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Junio C Hamano
committed
Aug 5, 2009
1 parent
07a4a3b
commit 29796c6
Showing
2 changed files
with
33 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='basic work tree status reporting' | ||
|
||
. ./test-lib.sh | ||
|
||
test_expect_success setup ' | ||
test_commit A && | ||
test_commit B oneside added && | ||
git checkout A^0 && | ||
test_commit C oneside created | ||
' | ||
|
||
test_expect_success 'A/A conflict' ' | ||
git checkout B^0 && | ||
test_must_fail git merge C | ||
' | ||
|
||
test_expect_success 'Report path with conflict' ' | ||
git diff --cached --name-status >actual && | ||
echo "U oneside" >expect && | ||
test_cmp expect actual | ||
' | ||
|
||
test_expect_success 'Report new path with conflict' ' | ||
git diff --cached --name-status HEAD^ >actual && | ||
echo "U oneside" >expect && | ||
test_cmp expect actual | ||
' | ||
|
||
test_done |