diff options
author | Patrick Steinhardt <ps@pks.im> | 2024-12-30 15:24:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-12-30 15:46:30 +0100 |
commit | 599a63409bed67d61c359d316da5a10bcddc954b (patch) | |
tree | 1580d066ba762c8581e5c89c1c2cfb1fb5cca427 | |
parent | builtin/fast-import: fix segfault with unsafe SHA1 backend (diff) | |
download | git-599a63409bed67d61c359d316da5a10bcddc954b.tar.xz git-599a63409bed67d61c359d316da5a10bcddc954b.zip |
ci: exercise unsafe OpenSSL backend
In the preceding commit we have fixed a segfault when using an unsafe
SHA1 backend that is different from the safe one. This segfault only
went by unnoticed because we never set up an unsafe backend in our CI
systems. Fix this ommission by setting `OPENSSL_SHA1_UNSAFE` in our
TEST-vars job.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | ci/run-build-and-tests.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/run-build-and-tests.sh b/ci/run-build-and-tests.sh index 2e28d02b20..e90b338001 100755 --- a/ci/run-build-and-tests.sh +++ b/ci/run-build-and-tests.sh @@ -17,6 +17,7 @@ linux-gcc) export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main ;; linux-TEST-vars) + export OPENSSL_SHA1_UNSAFE=YesPlease export GIT_TEST_SPLIT_INDEX=yes export GIT_TEST_MERGE_ALGORITHM=recursive export GIT_TEST_FULL_IN_PACK_ARRAY=true |