3 # Copyright (c) 2006 Shawn Pearce
6 test_description
='mmap sliding window tests'
15 dd if=/dev/urandom bs=32k count=1 >>$i &&
16 git-update-index --add $i || return 1
18 echo d >d && cat c >>d && git-update-index --add d &&
19 tree=`git-write-tree` &&
20 commit1=`git-commit-tree $tree </dev/null` &&
21 git-update-ref HEAD $commit1 &&
23 test "`git-count-objects`" = "0 objects, 0 kilobytes" &&
24 pack1=`ls .git/objects/pack/*.pack` &&
28 'verify-pack -v, defaults' \
29 'git-verify-pack -v "$pack1"'
32 'verify-pack -v, packedGitWindowSize == 1 page' \
33 'git-config core.packedGitWindowSize 512 &&
34 git-verify-pack -v "$pack1"'
37 'verify-pack -v, packedGit{WindowSize,Limit} == 1 page' \
38 'git-config core.packedGitWindowSize 512 &&
39 git-config core.packedGitLimit 512 &&
40 git-verify-pack -v "$pack1"'
43 'repack -a -d, packedGit{WindowSize,Limit} == 1 page' \
44 'git-config core.packedGitWindowSize 512 &&
45 git-config core.packedGitLimit 512 &&
46 commit2=`git-commit-tree $tree -p $commit1 </dev/null` &&
47 git-update-ref HEAD $commit2 &&
49 test "`git-count-objects`" = "0 objects, 0 kilobytes" &&
50 pack2=`ls .git/objects/pack/*.pack` &&
52 test "$pack1" \!= "$pack2"'
55 'verify-pack -v, defaults' \
56 'git-config --unset core.packedGitWindowSize &&
57 git-config --unset core.packedGitLimit &&
58 git-verify-pack -v "$pack2"'