# HG changeset patch # User Bram Moolenaar # Date 1639603819 -3600 # Node ID 119924c37d39e396189bfcb8d4712ab165ae298e # Parent d83c787c447ca00b73a4505a2fc145ce1181ddc5 patch 8.2.3821: ASAN test run fails Commit: https://github.com/vim/vim/commit/19569ca6d805de7a2ac95ee7b0c52475a9d5d851 Author: Bram Moolenaar Date: Wed Dec 15 21:29:19 2021 +0000 patch 8.2.3821: ASAN test run fails Problem: ASAN test run fails. Solution: Use asan_symbolize-13 instead of asan_symbolize-11. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -234,7 +234,7 @@ jobs: if: contains(matrix.extra, 'asan') && !cancelled() run: | for f in $(grep -lR '#[[:digit:]]* *0x[[:digit:]a-fA-F]*' "${LOG_DIR}"); do - asan_symbolize-11 -l "$f" + asan_symbolize-13 -l "$f" false # in order to fail a job done diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3821, +/**/ 3820, /**/ 3819,