aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-01-02 19:12:57 -0500
committerGitHub <noreply@github.com>2018-01-02 19:12:57 -0500
commit09b9f9b7ce4c86a931d29fa1ba8f023a8571cbc4 (patch)
tree3ffc51f4b264f01decd6209cc032d3246f10eaa4 /ci
parent60716371e97dae916c6525e9ba840aae562069bb (diff)
parentdd0fa4fd0e6dd7c59aba17dfeadc66b271501ce1 (diff)
downloadrneovim-09b9f9b7ce4c86a931d29fa1ba8f023a8571cbc4.tar.gz
rneovim-09b9f9b7ce4c86a931d29fa1ba8f023a8571cbc4.tar.bz2
rneovim-09b9f9b7ce4c86a931d29fa1ba8f023a8571cbc4.zip
Merge pull request #7803 from jamessan/remove-ci-special-cases
[RFC] Simplify Travis builds
Diffstat (limited to 'ci')
-rw-r--r--ci/common/test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh
index 55f76ca798..1cb3a6224b 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -71,7 +71,9 @@ valgrind_check() {
}
asan_check() {
- check_logs "${1}" "*san.*"
+ if test "${CLANG_SANITIZER}" = "ASAN_UBSAN" ; then
+ check_logs "${1}" "*san.*" | asan_symbolize
+ fi
}
run_unittests() {(