diff options
author | James McCoy <jamessan@jamessan.com> | 2020-08-27 22:50:38 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-09-04 10:59:16 -0400 |
commit | 2516386c6b40f5c313d33f838facb40ce5796b23 (patch) | |
tree | 60465c52b41b7a8c68350d8f6dfdc0044ebff019 /ci/common | |
parent | 16e69eae704c18f6081dac6802e106ad78c65288 (diff) | |
download | rneovim-2516386c6b40f5c313d33f838facb40ce5796b23.tar.gz rneovim-2516386c6b40f5c313d33f838facb40ce5796b23.tar.bz2 rneovim-2516386c6b40f5c313d33f838facb40ce5796b23.zip |
travis: Install clang-11 for ASAN/UBSAN job
[skip appveyor]
Diffstat (limited to 'ci/common')
-rw-r--r-- | ci/common/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index b2fbeaf2da..4ef6260339 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -82,7 +82,7 @@ valgrind_check() { check_sanitizer() { if test -n "${CLANG_SANITIZER}"; then - check_logs "${1}" "*san.*" + check_logs "${1}" "*san.*" | ${SYMBOLIZER:-cat} fi } |