aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-01-01 21:46:44 -0500
committerJames McCoy <jamessan@jamessan.com>2018-01-02 08:15:32 -0500
commitdd0fa4fd0e6dd7c59aba17dfeadc66b271501ce1 (patch)
tree3ffc51f4b264f01decd6209cc032d3246f10eaa4
parentd162815ca9237edf13b227cc51b4d2931f1f26a1 (diff)
downloadrneovim-dd0fa4fd0e6dd7c59aba17dfeadc66b271501ce1.tar.gz
rneovim-dd0fa4fd0e6dd7c59aba17dfeadc66b271501ce1.tar.bz2
rneovim-dd0fa4fd0e6dd7c59aba17dfeadc66b271501ce1.zip
ci: asan_check: No-op unless performing ASAN build
-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 2de89dee79..1cb3a6224b 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -71,7 +71,9 @@ valgrind_check() {
}
asan_check() {
- check_logs "${1}" "*san.*" | asan_symbolize
+ if test "${CLANG_SANITIZER}" = "ASAN_UBSAN" ; then
+ check_logs "${1}" "*san.*" | asan_symbolize
+ fi
}
run_unittests() {(