Mercurial > vim
changeset 12859:2893e4f08feb v8.0.1306
patch 8.0.1306: ASAN error stack trace is not useful
commit https://github.com/vim/vim/commit/9e27217c489c6eca2bd98d1c9fa89c1b652ed792
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 17 21:25:08 2017 +0100
patch 8.0.1306: ASAN error stack trace is not useful
Problem: ASAN error stack trace is not useful.
Solution: Add "asan_symbolize". (James McCoy, closes https://github.com/vim/vim/issues/2344)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 17 Nov 2017 21:30:06 +0100 |
parents | 4f1870188845 |
children | 0f8182e4c35b |
files | .travis.yml src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/.travis.yml +++ b/.travis.yml @@ -67,6 +67,7 @@ addons: apt: packages: - autoconf + - clang - lcov - libperl-dev - python-dev @@ -102,9 +103,8 @@ script: - (cd ${SRCDIR} && ./configure --with-features=$FEATURES $CONFOPT --enable-fail-if-missing && if [ "$BUILD" = "yes" ]; then make -j$NPROC; fi) # Show Vim version and also if_xx versions. - if [ "$BUILD" = "yes" ]; then ${SRCDIR}/vim --version; ${SRCDIR}/vim --not-a-term -u NONE -S ${SRCDIR}/testdir/if_ver-1.vim -c quit > /dev/null; ${SRCDIR}/vim --not-a-term -u NONE -S ${SRCDIR}/testdir/if_ver-2.vim -c quit > /dev/null; cat if_ver.txt; fi - - if [ -n "$ASAN_OPTIONS" ]; then export PATH=/usr/lib/llvm-$(clang -v 2>&1 | sed -n 's/.*version \([1-9]\.[0-9][0-9]*\).*/\1/p')/bin:$PATH; fi - make $SHADOWOPT $TEST - - if [ -n "$ASAN_OPTIONS" ]; then for log in $(find -type f -name 'asan.*' -size +0); do cat "$log"; err=1; done; fi + - if [ -n "$ASAN_OPTIONS" ]; then for log in $(find -type f -name 'asan.*' -size +0); do asan_symbolize < "$log"; err=1; done; fi - if [ -n "$err" ]; then exit 1; fi after_success: