blob: b419d6793e1597bfcf91aa9f84023d1e4fdb34c4 (
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
28
29
30
|
#!/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"
${KLEE_SRC}/.travis/z3.sh
;;
metaSMT)
echo "metaSMT"
${KLEE_SRC}/.travis/metaSMT.sh
;;
*)
echo "Unknown solver ${solver}"
exit 1
esac
done
|