diff options
author | Hoang <hle@cs.uni-bremen.de> | 2016-05-26 23:38:50 +0200 |
---|---|---|
committer | Hoang M. Le <hle@informatik.uni-bremen.de> | 2016-06-10 10:27:04 +0200 |
commit | 70bb7ef976a6a7b43d8aad6577773feaed7a2ebd (patch) | |
tree | 293ec37d992851378df9e8a4e09c19a847ad4a3a /.travis/klee.sh | |
parent | b30c06f9115bfcfea7a5d4d7609a25778adc573e (diff) | |
download | klee-70bb7ef976a6a7b43d8aad6577773feaed7a2ebd.tar.gz |
add metaSMT to travis
Diffstat (limited to '.travis/klee.sh')
-rwxr-xr-x | .travis/klee.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh index 296e1c83..64087b11 100755 --- a/.travis/klee.sh +++ b/.travis/klee.sh @@ -51,6 +51,7 @@ fi ############################################################################### KLEE_Z3_CONFIGURE_OPTION="" KLEE_STP_CONFIGURE_OPTION="" +KLEE_METASMT_CONFIGURE_OPTION="" SOLVER_LIST=$(echo "${SOLVERS}" | sed 's/:/ /') for solver in ${SOLVER_LIST}; do @@ -63,6 +64,10 @@ for solver in ${SOLVER_LIST}; do echo "Z3" KLEE_Z3_CONFIGURE_OPTION="--with-z3=/usr" ;; + metaSMT) + echo "metaSMT" + KLEE_METASMT_CONFIGURE_OPTION="--with-metasmt=${BUILD_DIR}/metaSMT/build/root" + ;; *) echo "Unknown solver ${solver}" exit 1 @@ -87,6 +92,7 @@ ${KLEE_SRC}/configure --with-llvmsrc=/usr/lib/llvm-${LLVM_VERSION}/build \ --with-llvmcxx=${KLEE_CXX} \ ${KLEE_STP_CONFIGURE_OPTION} \ ${KLEE_Z3_CONFIGURE_OPTION} \ + ${KLEE_METASMT_CONFIGURE_OPTION} \ ${KLEE_UCLIBC_CONFIGURE_OPTION} \ ${TCMALLOC_OPTION} \ CXXFLAGS="${COVERAGE_FLAGS}" \ |