mirror of
https://github.com/git/git.git
synced 2024-11-30 21:44:02 +08:00
t6501: avoid hard-coded objects
This test contains hard-coded invalid object IDs. Make it hash size independent by generating invalid object IDs using the translation tables. Add a setup target to ensure the output of test_oid_init is checked properly. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Reviewed-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
368f3cb051
commit
252a4ee66a
@ -128,9 +128,9 @@ for repack in '' true; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
test_expect_success 'do not complain about existing broken links (commit)' '
|
test_expect_success 'do not complain about existing broken links (commit)' '
|
||||||
cat >broken-commit <<-\EOF &&
|
cat >broken-commit <<-EOF &&
|
||||||
tree 0000000000000000000000000000000000000001
|
tree $(test_oid 001)
|
||||||
parent 0000000000000000000000000000000000000002
|
parent $(test_oid 002)
|
||||||
author whatever <whatever@example.com> 1234 -0000
|
author whatever <whatever@example.com> 1234 -0000
|
||||||
committer whatever <whatever@example.com> 1234 -0000
|
committer whatever <whatever@example.com> 1234 -0000
|
||||||
|
|
||||||
@ -143,8 +143,8 @@ test_expect_success 'do not complain about existing broken links (commit)' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'do not complain about existing broken links (tree)' '
|
test_expect_success 'do not complain about existing broken links (tree)' '
|
||||||
cat >broken-tree <<-\EOF &&
|
cat >broken-tree <<-EOF &&
|
||||||
100644 blob 0000000000000000000000000000000000000003 foo
|
100644 blob $(test_oid 003) foo
|
||||||
EOF
|
EOF
|
||||||
tree=$(git mktree --missing <broken-tree) &&
|
tree=$(git mktree --missing <broken-tree) &&
|
||||||
git gc -q 2>stderr &&
|
git gc -q 2>stderr &&
|
||||||
@ -153,8 +153,8 @@ test_expect_success 'do not complain about existing broken links (tree)' '
|
|||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'do not complain about existing broken links (tag)' '
|
test_expect_success 'do not complain about existing broken links (tag)' '
|
||||||
cat >broken-tag <<-\EOF &&
|
cat >broken-tag <<-EOF &&
|
||||||
object 0000000000000000000000000000000000000004
|
object $(test_oid 004)
|
||||||
type commit
|
type commit
|
||||||
tag broken
|
tag broken
|
||||||
tagger whatever <whatever@example.com> 1234 -0000
|
tagger whatever <whatever@example.com> 1234 -0000
|
||||||
|
Loading…
Reference in New Issue
Block a user