From: brian m. carlson Date: Mon, 25 May 2020 19:59:09 +0000 (+0000) Subject: t3200: mark assertion with SHA1 prerequisite X-Git-Tag: v2.28.0-rc0~27^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49c9a2ffe59b2e89ed4fd3f90b3dbc5d67760d74;p=thirdparty%2Fgit.git t3200: mark assertion with SHA1 prerequisite One of the test assertions in this test checks that git branch -m works even without a .git/config file. However, if the repository requires configuration extensions, such as because it uses a non-SHA-1 algorithm, this assertion will fail. Mark the assertion as requiring SHA-1. Signed-off-by: brian m. carlson Signed-off-by: Junio C Hamano --- diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index 411a70b0ce..2a3fedc6b0 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -402,7 +402,7 @@ EOF mv .git/config .git/config-saved -test_expect_success 'git branch -m q q2 without config should succeed' ' +test_expect_success SHA1 'git branch -m q q2 without config should succeed' ' git branch -m q q2 && git branch -m q2 q '