]> granicus.if.org Git - vim/commitdiff
patch 8.0.1306: ASAN error stack trace is not useful v8.0.1306
authorBram Moolenaar <Bram@vim.org>
Fri, 17 Nov 2017 20:25:08 +0000 (21:25 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 17 Nov 2017 20:25:08 +0000 (21:25 +0100)
Problem:    ASAN error stack trace is not useful.
Solution:   Add "asan_symbolize". (James McCoy, closes #2344)

.travis.yml
src/version.c

index b3ecd091c469f29619847acb552deec42ef05d5a..a2b074bde8dc2125352167991fe1732214b55cbb 100644 (file)
@@ -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:
index 1cffd61817c459530816daa7c0fbd6b1862e2e72..c07635c3b03e962e979b1cf98f6dd6ebd94f6595 100644 (file)
@@ -766,6 +766,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1306,
 /**/
     1305,
 /**/