Merge branch 'ma/header-dup-cleanup'
[git/debian.git] / t / t1003-read-tree-prefix.sh
blobe0db2066f3194b7084f25ea249156c30711f3e2b
1 #!/bin/sh
3 # Copyright (c) 2006 Junio C Hamano
6 test_description='git read-tree --prefix test.
9 TEST_PASSES_SANITIZE_LEAK=true
10 . ./test-lib.sh
12 test_expect_success setup '
13 echo hello >one &&
14 git update-index --add one &&
15 tree=$(git write-tree) &&
16 echo tree is $tree
19 echo 'one
20 two/one' >expect
22 test_expect_success 'read-tree --prefix' '
23 git read-tree --prefix=two/ $tree &&
24 git ls-files >actual &&
25 cmp expect actual
28 test_done