diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-03-01 23:47:46 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-03-01 23:47:46 +0800 |
commit | 5bd0c0d25aa4d15f6b034c015ef8ecd501947127 (patch) | |
tree | 264c071584657ace5d0785c5725449a2df477be5 /.travis.yml | |
parent | 26ad6853d20f0845697e7477b2224d1d5d1546cb (diff) |
avoid fsanitize=address for fuzzing
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2a46f37..67ff43a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,10 @@ matrix: - os: osx compiler: clang env: WEXTRAFLAGS="" - - env: DO_FUZZ=1 CONFIGURE_FLAGS="--enable-fuzz --disable-harden" EXTRACFLAGS=-fsanitize=address LDFLAGS=-fsanitize=address + + # TODO: add -fsanitize=address + # TODO: fuzzing malloc wrapper doesn't replace free() in system libtomcrypt + - env: DO_FUZZ=1 CONFIGURE_FLAGS="--enable-fuzz --disable-harden --enable-bundled-libtom" compiler: clang # container-based builds |