• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Révisionb5f0b8ee1ec5fc2aa1784ea9fd4e14bd2f285561 (tree)
l'heure2020-04-02 22:30:04
AuteurBram Moolenaar <Bram@vim....>
CommiterBram Moolenaar

Message de Log

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)

Change Summary

Modification

diff -r b7cb48d00aa9 -r b5f0b8ee1ec5 .travis.yml
--- a/.travis.yml Thu Apr 02 14:00:07 2020 +0200
+++ b/.travis.yml Thu Apr 02 15:30:04 2020 +0200
@@ -100,7 +100,7 @@
100100 # Update pyenv to fix the error "/opt/pyenv/libexec/pyenv: line 43: cd: asan_symbolize-6.0: Not a directory".
101101 # https://github.com/pyenv/pyenv/issues/580
102102 - (cd "${PYENV_ROOT}" && git fetch -p origin && git checkout "$(git rev-list --tags -n1)") &>/dev/null || true
103- - find . -type f -name 'asan.*' -size +0 2>/dev/null | xargs -I{} -n1 -t asan_symbolize -l{}
103+ - find . -type f -name 'asan.*' -size +0 2>/dev/null | xargs grep -l '^==[[:digit:]]*==ERROR:' | xargs -I{} -n1 -t asan_symbolize -l{}
104104
105105 branches:
106106 except:
diff -r b7cb48d00aa9 -r b5f0b8ee1ec5 src/version.c
--- a/src/version.c Thu Apr 02 14:00:07 2020 +0200
+++ b/src/version.c Thu Apr 02 15:30:04 2020 +0200
@@ -739,6 +739,8 @@
739739 static int included_patches[] =
740740 { /* Add new patch number below this line */
741741 /**/
742+ 497,
743+/**/
742744 496,
743745 /**/
744746 495,
Afficher sur ancien navigateur de dépôt.