blob: db717f2d5dd727470d744d134e3cf9e2905dbcb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash -x
# Make sure we exit if there is a failure
set -e
: ${SOLVERS?"Solvers must be specified"}
SOLVER_LIST=$(echo "${SOLVERS}" | sed 's/:/ /')
for solver in ${SOLVER_LIST}; do
echo "Getting solver ${solver}"
case ${solver} in
STP)
echo "STP"
mkdir stp
cd stp
${KLEE_SRC}/.travis/stp.sh
cd ../
;;
Z3)
echo "Z3"
# Should we install libz3-dbg too?
sudo apt-get -y install libz3 libz3-dev
;;
*)
echo "Unknown solver ${solver}"
exit 1
esac
done
|