grep: remove redundant "fixed" field re-assignment to 0
[gitweb.git] / t / t5313-pack-bounds-checks.sh
index efc519734524e3a7aeb795d6e730e520451ef481..9372508c993e72ad99da004ca2400df81c721006 100755 (executable)
@@ -128,7 +128,7 @@ test_expect_success 'bogus object offset (v2, no msb)' '
        test_must_fail git index-pack --verify $pack
 '
 
-test_expect_failure 'bogus offset into v2 extended table' '
+test_expect_success 'bogus offset into v2 extended table' '
        do_pack $object --index-version=2 &&
        munge $idx $(ofs_table 1) "\377\0\0\0" &&
        clear_base &&
@@ -136,10 +136,16 @@ test_expect_failure 'bogus offset into v2 extended table' '
        test_must_fail git index-pack --verify $pack
 '
 
-test_expect_failure 'bogus offset inside v2 extended table' '
+test_expect_success 'bogus offset inside v2 extended table' '
        # We need two objects here, so we can plausibly require
        # an extended table (if the first object were larger than 2^31).
-       do_pack "$object $(git rev-parse HEAD)" --index-version=2 &&
+       #
+       # Note that the value is important here. We want $object as
+       # the second entry in sorted-sha1 order. The sha1 of 1485 starts
+       # with "000", which sorts before that of $object (which starts
+       # with "fff").
+       second=$(echo 1485 | git hash-object -w --stdin) &&
+       do_pack "$object $second" --index-version=2 &&
 
        # We have to make extra room for the table, so we cannot
        # just munge in place as usual.