Michael J Gruber <g...@drmicha.warpmail.net> writes:

>  test_expect_success GPG 'detect fudged signature' '
>       git cat-file commit master >raw &&
>  
>       sed -e "s/seventh/7th forged/" raw >forged1 &&
>       git hash-object -w -t commit forged1 >forged1.commit &&
> +     ! git verify-commit $(cat forged1.commit) &&

This should be "test_must_fail git verify-commit ...", I think.
Otherwise you would end up declaring a segfaulting implementation a
good one.

> +     ! git verify-commit $(cat forged2.commit) &&

Likewise.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to