t5000: simplify tar-tree tests
Just compare the archives created by git tar-tree with the ones created using git archive with the equivalent options, whose contents are checked already, instead of extracting them again. Signed-off-by: René Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
03d9bc564b
commit
0a00ee5844
@ -115,14 +115,6 @@ test_expect_success 'git-archive --prefix=olde-' '
|
|||||||
|
|
||||||
check_tar with_olde-prefix olde-
|
check_tar with_olde-prefix olde-
|
||||||
|
|
||||||
test_expect_success \
|
|
||||||
'git tar-tree' \
|
|
||||||
'git tar-tree HEAD >b2.tar'
|
|
||||||
|
|
||||||
test_expect_success \
|
|
||||||
'git archive vs. git tar-tree' \
|
|
||||||
'test_cmp b.tar b2.tar'
|
|
||||||
|
|
||||||
test_expect_success 'git archive on large files' '
|
test_expect_success 'git archive on large files' '
|
||||||
test_config core.bigfilethreshold 1 &&
|
test_config core.bigfilethreshold 1 &&
|
||||||
git archive HEAD >b3.tar &&
|
git archive HEAD >b3.tar &&
|
||||||
@ -158,22 +150,15 @@ test_expect_success \
|
|||||||
'git get-tar-commit-id <b.tar >b.commitid &&
|
'git get-tar-commit-id <b.tar >b.commitid &&
|
||||||
test_cmp .git/$(git symbolic-ref HEAD) b.commitid'
|
test_cmp .git/$(git symbolic-ref HEAD) b.commitid'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success 'git tar-tree' '
|
||||||
'git tar-tree with prefix' \
|
git tar-tree HEAD >tar-tree.tar &&
|
||||||
'git tar-tree HEAD prefix >c.tar'
|
test_cmp b.tar tar-tree.tar
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success 'git tar-tree with prefix' '
|
||||||
'extract tar archive with prefix' \
|
git tar-tree HEAD prefix >tar-tree_with_prefix.tar &&
|
||||||
'(mkdir c && cd c && "$TAR" xf -) <c.tar'
|
test_cmp with_prefix.tar tar-tree_with_prefix.tar
|
||||||
|
'
|
||||||
test_expect_success \
|
|
||||||
'validate filenames with prefix' \
|
|
||||||
'(cd c/prefix/a && find .) | sort >c.lst &&
|
|
||||||
test_cmp a.lst c.lst'
|
|
||||||
|
|
||||||
test_expect_success \
|
|
||||||
'validate file contents with prefix' \
|
|
||||||
'diff -r a c/prefix/a'
|
|
||||||
|
|
||||||
test_expect_success 'git archive with --output, override inferred format' '
|
test_expect_success 'git archive with --output, override inferred format' '
|
||||||
git archive --format=tar --output=d4.zip HEAD &&
|
git archive --format=tar --output=d4.zip HEAD &&
|
||||||
|
Reference in New Issue
Block a user