3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='git-checkout-index --prefix test.
8 This test makes sure that --prefix option works as advertised, and
9 also verifies that such leading path may contain symlinks, unlike
10 the GIT controlled paths.
19 echo rezrov >path1/file1 &&
20 git-update-index --add path0 path1/file1'
23 'have symlink in place where dir is expected.' \
24 'rm -fr path0 path1 &&
27 git-checkout-index -f -a &&
28 test ! -h path1 && test -d path1 &&
29 test -f path1/file1 && test ! -f path2/file1'
32 'use --prefix=path2/' \
33 'rm -fr path0 path1 path2 &&
35 git-checkout-index --prefix=path2/ -f -a &&
36 test -f path2/path0 &&
37 test -f path2/path1/file1 &&
39 test ! -f path1/file1'
43 'rm -fr path0 path1 path2 tmp* &&
44 git-checkout-index --prefix=tmp- -f -a &&
46 test -f tmp-path1/file1 &&
48 test ! -f path1/file1'
51 'use --prefix=tmp- but with a conflicting file and dir' \
52 'rm -fr path0 path1 path2 tmp* &&
53 echo nitfol >tmp-path1 &&
55 git-checkout-index --prefix=tmp- -f -a &&
57 test -f tmp-path1/file1 &&
59 test ! -f path1/file1'
63 'use --prefix=tmp/orary/ where tmp is a symlink' \
64 'rm -fr path0 path1 path2 tmp* &&
65 mkdir tmp1 tmp1/orary &&
67 git-checkout-index --prefix=tmp/orary/ -f -a &&
69 test -f tmp1/orary/path0 &&
70 test -f tmp1/orary/path1/file1 &&
75 'use --prefix=tmp/orary- where tmp is a symlink' \
76 'rm -fr path0 path1 path2 tmp* &&
79 git-checkout-index --prefix=tmp/orary- -f -a &&
80 test -f tmp1/orary-path0 &&
81 test -f tmp1/orary-path1/file1 &&
86 'use --prefix=tmp- where tmp-path1 is a symlink' \
87 'rm -fr path0 path1 path2 tmp* &&
89 ln -s tmp1 tmp-path1 &&
90 git-checkout-index --prefix=tmp- -f -a &&
92 test ! -h tmp-path1 &&
94 test -f tmp-path1/file1'