changeset 19882:b5f0b8ee1ec5 v8.2.0497

patch 8.2.0497: too verbose output from the asan build in Travis Commit: https://github.com/vim/vim/commit/e5bae13da327235836b505ee47224b465713ad75 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 2 15:17:32 2020 +0200 patch 8.2.0497: too verbose output from the asan build in Travis Problem: Too verbose output from the asan build in Travis. Solution: Filter out suppression messages. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/5874)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Apr 2020 15:30:04 +0200
parents b7cb48d00aa9
children e188358c0d8a
files .travis.yml src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.travis.yml
+++ b/.travis.yml
@@ -100,7 +100,7 @@ language: c
     # Update pyenv to fix the error "/opt/pyenv/libexec/pyenv: line 43: cd: asan_symbolize-6.0: Not a directory".
     # https://github.com/pyenv/pyenv/issues/580
     - (cd "${PYENV_ROOT}" && git fetch -p origin && git checkout "$(git rev-list --tags -n1)") &>/dev/null || true
-    - find . -type f -name 'asan.*' -size +0 2>/dev/null | xargs -I{} -n1 -t asan_symbolize -l{}
+    - find . -type f -name 'asan.*' -size +0 2>/dev/null | xargs grep -l '^==[[:digit:]]*==ERROR:' | xargs -I{} -n1 -t asan_symbolize -l{}
 
 branches:
   except:
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    497,
+/**/
     496,
 /**/
     495,