]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5301-sliding-window.sh
The sixth batch
[thirdparty/git.git] / t / t5301-sliding-window.sh
CommitLineData
2dee8af6
SP
1#!/bin/sh
2#
3# Copyright (c) 2006 Shawn Pearce
4#
5
6test_description='mmap sliding window tests'
7. ./test-lib.sh
8
9test_expect_success \
10 'setup' \
a48fcd83 11 'rm -f .git/index* &&
2dee8af6
SP
12 for i in a b c
13 do
14 echo $i >$i &&
c680668d 15 test-tool genrandom "$i" 32768 >>$i &&
5be60078 16 git update-index --add $i || return 1
2dee8af6 17 done &&
5be60078 18 echo d >d && cat c >>d && git update-index --add d &&
046dec74
EP
19 tree=$(git write-tree) &&
20 commit1=$(git commit-tree $tree </dev/null) &&
5be60078 21 git update-ref HEAD $commit1 &&
3604e7c5 22 git repack -a -d &&
046dec74
EP
23 test "$(git count-objects)" = "0 objects, 0 kilobytes" &&
24 pack1=$(ls .git/objects/pack/*.pack) &&
2dee8af6
SP
25 test -f "$pack1"'
26
27test_expect_success \
28 'verify-pack -v, defaults' \
5be60078 29 'git verify-pack -v "$pack1"'
2dee8af6
SP
30
31test_expect_success \
32 'verify-pack -v, packedGitWindowSize == 1 page' \
5be60078
JH
33 'git config core.packedGitWindowSize 512 &&
34 git verify-pack -v "$pack1"'
2dee8af6
SP
35
36test_expect_success \
37 'verify-pack -v, packedGit{WindowSize,Limit} == 1 page' \
5be60078
JH
38 'git config core.packedGitWindowSize 512 &&
39 git config core.packedGitLimit 512 &&
40 git verify-pack -v "$pack1"'
2dee8af6
SP
41
42test_expect_success \
43 'repack -a -d, packedGit{WindowSize,Limit} == 1 page' \
5be60078
JH
44 'git config core.packedGitWindowSize 512 &&
45 git config core.packedGitLimit 512 &&
046dec74 46 commit2=$(git commit-tree $tree -p $commit1 </dev/null) &&
5be60078 47 git update-ref HEAD $commit2 &&
3604e7c5 48 git repack -a -d &&
046dec74
EP
49 test "$(git count-objects)" = "0 objects, 0 kilobytes" &&
50 pack2=$(ls .git/objects/pack/*.pack) &&
a48fcd83 51 test -f "$pack2" &&
2dee8af6
SP
52 test "$pack1" \!= "$pack2"'
53
54test_expect_success \
55 'verify-pack -v, defaults' \
5be60078
JH
56 'git config --unset core.packedGitWindowSize &&
57 git config --unset core.packedGitLimit &&
58 git verify-pack -v "$pack2"'
2dee8af6
SP
59
60test_done