diff options
author | Hoang M. Le <hle@informatik.uni-bremen.de> | 2017-10-05 11:37:56 +0200 |
---|---|---|
committer | Andrea Mattavelli <andreamattavelli@users.noreply.github.com> | 2017-10-17 22:22:14 +0100 |
commit | c9e0af1f12d606120b5f6d60a54f1b79cfc01f7c (patch) | |
tree | 56701534ca90b0c4a6b17e478380a19c92bcf4a5 /.travis/klee.sh | |
parent | ce39e6e92c27dd59290be18a12ed4cd4c40c01a7 (diff) | |
download | klee-c9e0af1f12d606120b5f6d60a54f1b79cfc01f7c.tar.gz |
[travis] update scripts to additionally test CVC4 and Yices2
Diffstat (limited to '.travis/klee.sh')
-rwxr-xr-x | .travis/klee.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh index 33299780..2de6b57c 100755 --- a/.travis/klee.sh +++ b/.travis/klee.sh @@ -147,7 +147,7 @@ make systemtests # If metaSMT is the only solver, then rerun lit tests with non-default metaSMT backends if [ "X${SOLVERS}" == "XmetaSMT" ]; then metasmt_default=`echo "${METASMT_DEFAULT,,}"` # klee_opts and kleaver_opts use lowercase - available_metasmt_backends="btor stp z3" + available_metasmt_backends="btor stp z3 yices2 cvc4" for backend in $available_metasmt_backends; do if [ "X${metasmt_default}" != "X$backend" ]; then lit -v --param klee_opts=-metasmt-backend=$backend --param kleaver_opts=-metasmt-backend=$backend test/ |