diff options
author | Emilia Kasper <emilia@openssl.org> | 2016-05-12 20:00:14 +0200 |
---|---|---|
committer | Emilia Kasper <emilia@openssl.org> | 2016-05-30 18:47:32 +0200 |
commit | a7cbe963c3c486e336babf224f68f294c55489cf (patch) | |
tree | ae1f9d1cf8bd8848d6c8413a950b762fb2cc19cf /.travis.yml | |
parent | Fix strdup macro redefinition (diff) | |
download | openssl-a7cbe963c3c486e336babf224f68f294c55489cf.tar.xz openssl-a7cbe963c3c486e336babf224f68f294c55489cf.zip |
Travis: update sanitizer configs
- Use the new enable-ubsan and enable-asan configuration options.
- Separate ubsan and asan runs.
- In addition, run shared ubsan tests to get more coverage.
(Shared asan tests need a bit more thought to get them working.)
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 78cee30374..d3f67f9b4c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,16 +33,16 @@ matrix: include: - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="-fsanitize=address no-shared" + env: CONFIG_OPTS="no-shared enable-asan" - os: linux compiler: clang-3.6 - env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2 -fno-sanitize=alignment" + env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -fno-sanitize=alignment" - os: linux compiler: gcc-5 - env: CONFIG_OPTS="no-shared -fsanitize=address" + env: CONFIG_OPTS="no-shared no-asm enable-asan enable-rc5 enable-md2" - os: linux compiler: gcc-5 - env: CONFIG_OPTS="no-shared no-asm -fno-sanitize-recover -DPEDANTIC -fsanitize=address -fsanitize=undefined enable-rc5 enable-md2" + env: CONFIG_OPTS="no-asm enable-ubsan enable-rc5 enable-md2 -DPEDANTIC" - os: linux compiler: i686-w64-mingw32-gcc env: CONFIG_OPTS="no-pic" |