about summary refs log tree commit diff homepage
path: root/.travis
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2014-09-13 12:05:09 -0700
committerDaniel Dunbar <daniel@zuster.org>2014-09-13 15:21:20 -0700
commitd66f360162e76e91d373bf34c59535ddfbc8520c (patch)
treeb434577dcefe2bc7a25cc43ed58c83f821f22e0d /.travis
parent81001c03e923755b090584e9b190294c7fc48b6d (diff)
downloadklee-d66f360162e76e91d373bf34c59535ddfbc8520c.tar.gz
[Travis] Propagate make flags to unittests build as well.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/klee.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh
index 0853d0e8..012262c6 100755
--- a/.travis/klee.sh
+++ b/.travis/klee.sh
@@ -78,7 +78,10 @@ svn export  http://llvm.org/svn/llvm-project/llvm/branches/${SVN_BRANCH}/unittes
 sudo mv ../Makefile.unittest /usr/lib/llvm-${LLVM_VERSION}/build/unittests/
 
 
-make unittests ENABLE_SHARED=0
+make unittests \
+    DISABLE_ASSERTIONS=${DISABLE_ASSERTIONS} \
+    ENABLE_OPTIMIZED=${ENABLE_OPTIMIZED} \
+    ENABLE_SHARED=0
 RETURN="$?"
 
 ###############################################################################