diff options
author | Daniel Dunbar <daniel@zuster.org> | 2014-09-13 12:14:01 -0700 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2014-09-13 15:21:20 -0700 |
commit | f11c0b1039bcadf5420e1d9139200ef1ea93e37a (patch) | |
tree | f75db7a531494b581822b34ee45e3818ae41db46 /.travis | |
parent | d66f360162e76e91d373bf34c59535ddfbc8520c (diff) | |
download | klee-f11c0b1039bcadf5420e1d9139200ef1ea93e37a.tar.gz |
[Travis] Also propagate make flags to 'lit.site.cfg' build.
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/klee.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh index 012262c6..6c4ba745 100755 --- a/.travis/klee.sh +++ b/.travis/klee.sh @@ -90,7 +90,10 @@ RETURN="$?" # Note can't use ``make check`` because llvm-lit is not available cd test # The build system needs to generate this file before we can run lit -make lit.site.cfg +make lit.site.cfg \ + DISABLE_ASSERTIONS=${DISABLE_ASSERTIONS} \ + ENABLE_OPTIMIZED=${ENABLE_OPTIMIZED} \ + ENABLE_SHARED=0 # Running is parallel is broken and there's no point on our "single core" VM anyway set +e # We want to let all the tests run before we exit |