From 57b56e37e5f531863827022694fbe2335e2a4d5c Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 25 Jun 2016 18:49:28 -0400 Subject: ci: Remove MSAN build until it is fixed. (#4966) Closes #4956 --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1158acf076..8334b03cdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,6 @@ env: # Environment variables for Clang sanitizers. - ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan" - ASAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER" - - MSAN_SYMBOLIZER_PATH="$LLVM_SYMBOLIZER" - TSAN_OPTIONS="external_symbolizer_path=$LLVM_SYMBOLIZER log_path=$LOG_DIR/tsan" - UBSAN_OPTIONS="log_path=$LOG_DIR/ubsan" # Environment variables for Valgrind. @@ -74,9 +73,6 @@ matrix: - os: linux compiler: clang env: GCOV=llvm-cov CLANG_SANITIZER=ASAN_UBSAN CMAKE_FLAGS="$CMAKE_FLAGS -DUSE_GCOV=ON" - - os: linux - compiler: clang - env: CLANG_SANITIZER=MSAN - os: linux compiler: clang env: CLANG_SANITIZER=TSAN @@ -87,9 +83,6 @@ matrix: - os: linux env: BUILD_MINGW=ON fast_finish: true - allow_failures: - # TODO: Remove when all MSan errors have been fixed. - - env: CLANG_SANITIZER=MSAN before_install: .ci/before_install.sh install: .ci/install.sh -- cgit