diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2018-07-11 15:11:53 +0200 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2018-10-17 07:12:28 -0700 |
commit | 837de32496b1f20524c723516775a11bf236f891 (patch) | |
tree | d05045657176e51d5e1f1f74cdd7531ea12f5c89 /scripts/gen_travis.py | |
parent | 741fca1bb7773e14cf929824b94506eb9f545e5e (diff) |
Test smallocx on Travis-CI
This commit updates the gen_travis script with a new build bot
that covers the experimental `smallocx` API and updates the
travis CI script to test this API under travis.
Diffstat (limited to 'scripts/gen_travis.py')
-rwxr-xr-x | scripts/gen_travis.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/gen_travis.py b/scripts/gen_travis.py index 743f1e5d..e92660f7 100755 --- a/scripts/gen_travis.py +++ b/scripts/gen_travis.py @@ -118,6 +118,13 @@ include_rows += '''\ env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug --disable-cache-oblivious --enable-stats --enable-log --enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds" ''' +# Enable-expermental-smallocx +include_rows += '''\ + # --enable-expermental-smallocx: + - os: linux + env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="--enable-debug --enable-experimental-smallocx --enable-stats --enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds" +''' + # Valgrind build bots include_rows += ''' # Valgrind |