3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='git update-index nonsense-path test.
8 This test creates the following structure in the cache:
12 path2/file2 - a file in a directory
13 path3/file3 - a file in a directory
15 and tries to git update-index --add the following:
17 path0/file0 - a file in a directory
18 path1/file1 - a file in a directory
22 All of the attempts should fail.
29 if test_have_prereq SYMLINKS
39 'git update-index --add to add various paths.' \
40 'git update-index --add -- path0 path1 path2/file2 path3/file3'
46 if test_have_prereq SYMLINKS
55 for p
in path
0/file0 path
1/file1 path2 path3
58 "git update-index to add conflicting path $p should fail." \
59 "test_must_fail git update-index --add -- $p"