diff options
author | Junio C Hamano <junkio@cox.net> | 2005-10-30 18:06:39 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-30 18:06:39 -0800 |
commit | e634aec752642dcf86c3fc82025e43381d6768c2 (patch) | |
tree | a589b6756894d18c841ac61499e5d2c9beda36fd /t/t5300-pack-object.sh | |
parent | a1c7a69047e88244ed321b5aa2a8bcbba5a869c2 (diff) | |
parent | 80e0c0ab91e1cf6a6315d0431bf6873ebbf8bef0 (diff) |
GIT 0.99.9av0.99.9a
... to contain the RPM workaround.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5300-pack-object.sh')
-rwxr-xr-x | t/t5300-pack-object.sh | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/t/t5300-pack-object.sh b/t/t5300-pack-object.sh index bb62336f26..5b50536b54 100755 --- a/t/t5300-pack-object.sh +++ b/t/t5300-pack-object.sh @@ -49,7 +49,7 @@ test_expect_success \ git-unpack-objects <test-1-${packname_1}.pack" unset GIT_OBJECT_DIRECTORY -cd $TRASH/.git2 +cd "$TRASH/.git2" test_expect_success \ 'check unpack without delta' \ @@ -61,7 +61,7 @@ test_expect_success \ return 1 } done' -cd $TRASH +cd "$TRASH" test_expect_success \ 'pack with delta' \ @@ -80,7 +80,7 @@ test_expect_success \ git-unpack-objects <test-2-${packname_2}.pack' unset GIT_OBJECT_DIRECTORY -cd $TRASH/.git2 +cd "$TRASH/.git2" test_expect_success \ 'check unpack with delta' \ '(cd ../.git && find objects -type f -print) | @@ -91,7 +91,7 @@ test_expect_success \ return 1 } done' -cd $TRASH +cd "$TRASH" rm -fr .git2 mkdir .git2 @@ -165,4 +165,22 @@ test_expect_success \ :' +test_expect_success \ + 'build pack index for an existing pack' \ + 'cp test-1-${packname_1}.pack test-3.pack && + git-index-pack -o tmp.idx test-3.pack && + cmp tmp.idx test-1-${packname_1}.idx && + + git-index-pack test-3.pack && + cmp test-3.idx test-1-${packname_1}.idx && + + cp test-2-${packname_2}.pack test-3.pack && + git-index-pack -o tmp.idx test-2-${packname_2}.pack && + cmp tmp.idx test-2-${packname_2}.idx && + + git-index-pack test-3.pack && + cmp test-3.idx test-2-${packname_2}.idx && + + :' + test_done |