diff options
author | Haru <haru@dotalux.com> | 2018-01-15 01:41:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 01:41:01 +0100 |
commit | b7ce4d4ef56289853304293d55526b436519dd75 (patch) | |
tree | c44f2c678a31e37f71ca21791da09eccbe93f1d6 | |
parent | 26f7e0a200471465498221b320f0418a3eb5f5f1 (diff) | |
parent | 4eaf45c419ab44582a0c9e9e90b72ec2fb9e6778 (diff) | |
download | hercules-b7ce4d4ef56289853304293d55526b436519dd75.tar.gz hercules-b7ce4d4ef56289853304293d55526b436519dd75.tar.bz2 hercules-b7ce4d4ef56289853304293d55526b436519dd75.tar.xz hercules-b7ce4d4ef56289853304293d55526b436519dd75.zip |
Merge pull request #1952 from MishimaHaruna/i386-sanitize-fix
Fix i386 CI builds
-rwxr-xr-x | tools/ci/travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh index 59726efe8..f6c799934 100755 --- a/tools/ci/travis.sh +++ b/tools/ci/travis.sh @@ -207,7 +207,7 @@ EOF echo "Disable leak dection on travis" export ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=true:strict_init_order=true else - export ASAN_OPTIONS=detect_leaks=1:detect_stack_use_after_return=true:strict_init_order=true + export ASAN_OPTIONS=detect_stack_use_after_return=true:strict_init_order=true fi # run_test spinlock # Not running the spinlock test for the time being (too time consuming) run_test libconfig |