aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2019-09-30 18:03:12 +0000
committerpracticalswift <[email protected]>2019-10-01 08:23:34 +0000
commitaa81e2cc0eab600c7839dc40689c4a31e146dd19 (patch)
tree31fdffa18b307acfeb2ae7df0315aff0ae10c94b
parentMerge #16987: test: Correct docstring param name. (diff)
downloaddiscoin-aa81e2cc0eab600c7839dc40689c4a31e146dd19.tar.xz
discoin-aa81e2cc0eab600c7839dc40689c4a31e146dd19.zip
Enable UBSan for Travis fuzzer job
-rw-r--r--.travis.yml2
-rw-r--r--ci/test/00_setup_env_amd64_fuzz.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index e93f6ca0d..3467103d1 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 edcb65af2..7bdfc2c32 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++"