diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-02 15:17:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-02 15:17:32 +0200 |
commit | e5bae13da327235836b505ee47224b465713ad75 (patch) | |
tree | 49a39f10cd55850db0d7d8ca19d5f99c852bcbc5 /.travis.yml | |
parent | a4d4cf490e2974843c80598e6f40f83aae658fd3 (diff) | |
download | vim-git-e5bae13da327235836b505ee47224b465713ad75.tar.gz |
patch 8.2.0497: too verbose output from the asan build in Travisv8.2.0497
Problem: Too verbose output from the asan build in Travis.
Solution: Filter out suppression messages. (Ozaki Kiichi, closes #5874)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b4fe2ebdd..f3da2d10a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: |