diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-06-08 03:50:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-06-16 03:43:43 +0300 |
commit | 6a491c515944da24d995d80face1a57133b230f6 (patch) | |
tree | 0453f9b3f8b5af27b239682edf9c9b2ba73fbf4c /tools/ci/travis.sh | |
parent | f73dd1e9a43eb3914ba040944b5a21c663cb8ca7 (diff) | |
download | hercules-6a491c515944da24d995d80face1a57133b230f6.tar.gz hercules-6a491c515944da24d995d80face1a57133b230f6.tar.bz2 hercules-6a491c515944da24d995d80face1a57133b230f6.tar.xz hercules-6a491c515944da24d995d80face1a57133b230f6.zip |
Disable odr violation detection in ci
Diffstat (limited to 'tools/ci/travis.sh')
-rwxr-xr-x | tools/ci/travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh index 2e0684dbf..195bee2f8 100755 --- a/tools/ci/travis.sh +++ b/tools/ci/travis.sh @@ -227,9 +227,9 @@ EOF echo "run tests" if [[ $DBUSER == "travis" ]]; then echo "Disable leak dection on travis" - export ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=true:strict_init_order=true + export ASAN_OPTIONS=detect_leaks=0:detect_stack_use_after_return=true:strict_init_order=true:detect_odr_violation=0 else - export ASAN_OPTIONS=detect_stack_use_after_return=true:strict_init_order=true + export ASAN_OPTIONS=detect_stack_use_after_return=true:strict_init_order=true:detect_odr_violation=0 fi # run_test spinlock # Not running the spinlock test for the time being (too time consuming) run_test libconfig |