diff options
author | Jack Lloyd <[email protected]> | 2016-09-14 10:43:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-09-14 10:43:52 -0400 |
commit | 272fcf00572432f64085b10132e364740d7eb093 (patch) | |
tree | 8fcc67841b86f5e370d93b0fabe0e36932624a10 /src/scripts | |
parent | 00e0283a928dc3a9ffc6e31ffbb98930a0862427 (diff) |
Disable locking_allocator on valgrind/ASan builds.
GH #626
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/travis/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh index f2b4f2b67..cf90136b7 100755 --- a/src/scripts/ci/travis/build.sh +++ b/src/scripts/ci/travis/build.sh @@ -31,9 +31,9 @@ elif [ "$BUILD_MODE" = "coverage" ]; then CFG_FLAGS+=(--with-coverage) elif [ "$BUILD_MODE" = "sanitizer" ]; then export ASAN_OPTIONS=detect_leaks=0 - CFG_FLAGS+=(--with-sanitizers) + CFG_FLAGS+=(--with-sanitizers --disable-modules=locking_allocator) elif [ "$BUILD_MODE" = "valgrind" ]; then - CFG_FLAGS+=(--with-valgrind --with-debug-info) + CFG_FLAGS+=(--with-valgrind --with-debug-info --disable-modules=locking_allocator) TEST_PREFIX="valgrind --track-origins=yes --error-exitcode=9 -v" fi |