Merge git://git.kernel.org/pub/scm/gitk/gitk
[git] / t / t6004-rev-list-path-optim.sh
1 #!/bin/sh
2
3 test_description='git-rev-list trivial path optimization test'
4
5 . ./test-lib.sh
6
7 test_expect_success setup '
8 echo Hello > a &&
9 git add a &&
10 git commit -m "Initial commit" a
11 '
12
13 test_expect_success path-optimization '
14     commit=$(echo "Unchanged tree" | git-commit-tree "HEAD^{tree}" -p HEAD) &&
15     test $(git-rev-list $commit | wc -l) = 2 &&
16     test $(git-rev-list $commit -- . | wc -l) = 1
17 '
18
19 test_done