diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-10-02 08:25:45 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-10-02 08:25:51 -0400 |
commit | ddc4e3c2d6857336a38cee49c47bce3ca49ab224 (patch) | |
tree | 539cfcfbcf5da7401af8908eb0617c23ecd93009 | |
parent | 30c2b0b1cb110c27e329e453210561ea5dcdbeb5 (diff) | |
parent | aa81e2cc0eab600c7839dc40689c4a31e146dd19 (diff) |
Merge #17006: tests: Enable UBSan for Travis fuzzing job
aa81e2cc0eab600c7839dc40689c4a31e146dd19 Enable UBSan for Travis fuzzer job (practicalswift)
Pull request description:
Enable UBSan for Travis fuzzing job (`00_setup_env_amd64_fuzz.sh`).
ACKs for top commit:
MarcoFalke:
ACK aa81e2cc0eab600c7839dc40689c4a31e146dd19
Tree-SHA512: 6c72df49db113b27e5ed5eb0fac69fa01dc36cccc802ac444349533747437a72cb5e073490e10de4a838f0ea202693e74c09d69061b9ee0f6d2129320ccb4bcd
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | ci/test/00_setup_env_amd64_fuzz.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index e93f6ca0dc..3467103d10 100644 --- a/.travis.yml +++ b/.travis.yml @@ -125,7 +125,7 @@ jobs: FILE_ENV="./ci/test/00_setup_env_amd64_asan.sh" - stage: test - name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, sanitizers: fuzzer,address]' + name: 'x86_64 Linux [GOAL: install] [bionic] [no depends, only system libs, sanitizers: fuzzer,address,undefined]' env: >- FILE_ENV="./ci/test/00_setup_env_amd64_fuzz.sh" diff --git a/ci/test/00_setup_env_amd64_fuzz.sh b/ci/test/00_setup_env_amd64_fuzz.sh index edcb65af28..7bdfc2c320 100644 --- a/ci/test/00_setup_env_amd64_fuzz.sh +++ b/ci/test/00_setup_env_amd64_fuzz.sh @@ -13,4 +13,4 @@ export RUN_UNIT_TESTS=false export RUN_FUNCTIONAL_TESTS=false export RUN_FUZZ_TESTS=true export GOAL="install" -export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++" +export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer,address,undefined CC=clang CXX=clang++" |