]> granicus.if.org Git - vim/commitdiff
patch 8.2.0497: too verbose output from the asan build in Travis v8.2.0497
authorBram Moolenaar <Bram@vim.org>
Thu, 2 Apr 2020 13:17:32 +0000 (15:17 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 2 Apr 2020 13:17:32 +0000 (15:17 +0200)
Problem:    Too verbose output from the asan build in Travis.
Solution:   Filter out suppression messages. (Ozaki Kiichi, closes #5874)

.travis.yml
src/version.c

index b4fe2ebdd2a424a1f99b3f700ae4c7cd4d0232ef..f3da2d10a9330cd0228904aeb877d7f6f3e1854f 100644 (file)
@@ -100,7 +100,7 @@ _anchors:
     # 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:
index 8973af793ca347efe9d3b076cc7690c32ab8eb0e..9ceed5a9520dd8972e593d27d0e3bf729cf2cc32 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    497,
 /**/
     496,
 /**/