3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='Rename interaction with pathspec.
10 . ..
/diff-lib.sh
;# test-lib chdir's into trash
13 'prepare reference tree' \
15 cp ../../COPYING path0/COPYING &&
16 git-update-index --add path0/COPYING &&
17 tree=$(git-write-tree) &&
22 'cp path0/COPYING path1/COPYING &&
23 git-update-index --add --remove path0/COPYING path1/COPYING'
25 # In the tree, there is only path0/COPYING. In the cache, path0 and
26 # path1 both have COPYING and the latter is a copy of path0/COPYING.
27 # Comparing the full tree with cache should tell us so.
29 git-diff-index
-C --find-copies-harder $tree >current
32 :100644 100644 6ff87c4664981e4397625791c8ea3bbb5f2279a3
6ff87c4664981e4397625791c8ea3bbb5f2279a3 C100 path
0/COPYING path
1/COPYING
36 'validate the result (#1)' \
37 'compare_diff_raw current expected'
39 # In the tree, there is only path0/COPYING. In the cache, path0 and
40 # path1 both have COPYING and the latter is a copy of path0/COPYING.
41 # However when we say we care only about path1, we should just see
42 # path1/COPYING suddenly appearing from nowhere, not detected as
43 # a copy from path0/COPYING.
45 git-diff-index
-C $tree path1
>current
48 :000000 100644 0000000000000000000000000000000000000000 6ff87c4664981e4397625791c8ea3bbb5f2279a3 A path
1/COPYING
52 'validate the result (#2)' \
53 'compare_diff_raw current expected'
57 'rm -f path0/COPYING &&
58 git-update-index --remove path0/COPYING'
60 # In the tree, there is only path0/COPYING. In the cache, path0 does
61 # not have COPYING anymore and path1 has COPYING which is a copy of
62 # path0/COPYING. Showing the full tree with cache should tell us about
65 git-diff-index
-C $tree >current
68 :100644 100644 6ff87c4664981e4397625791c8ea3bbb5f2279a3
6ff87c4664981e4397625791c8ea3bbb5f2279a3 R100 path
0/COPYING path
1/COPYING
72 'validate the result (#3)' \
73 'compare_diff_raw current expected'
75 # In the tree, there is only path0/COPYING. In the cache, path0 does
76 # not have COPYING anymore and path1 has COPYING which is a copy of
77 # path0/COPYING. When we say we care only about path1, we should just
78 # see path1/COPYING appearing from nowhere.
80 git-diff-index
-C $tree path1
>current
83 :000000 100644 0000000000000000000000000000000000000000 6ff87c4664981e4397625791c8ea3bbb5f2279a3 A path
1/COPYING
87 'validate the result (#4)' \
88 'compare_diff_raw current expected'