diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-12 22:28:59 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-11-23 20:29:59 -0500 |
commit | 6d727657c8c9f404821ddd92b36a8e4bc1a4190e (patch) | |
tree | f4fe47f295e014330cb9c7ba04a416d56e1f39cf | |
parent | b6a090b4fd5d611df9cbc5cf66b3474c1d050750 (diff) | |
download | rneovim-6d727657c8c9f404821ddd92b36a8e4bc1a4190e.tar.gz rneovim-6d727657c8c9f404821ddd92b36a8e4bc1a4190e.tar.bz2 rneovim-6d727657c8c9f404821ddd92b36a8e4bc1a4190e.zip |
ci: Make ubsan print out a stacktrace when it finds a problem
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index a09a24dc6c..039a00cce8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ env: # Environment variables for Clang sanitizers. - ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan" - TSAN_OPTIONS="log_path=$LOG_DIR/tsan" - - UBSAN_OPTIONS="log_path=$LOG_DIR/ubsan" + - UBSAN_OPTIONS="print_stacktrace=1 log_path=$LOG_DIR/ubsan" # Environment variables for Valgrind. - VALGRIND_LOG="$LOG_DIR/valgrind-%p.log" # Cache marker for third-party dependencies cache. |