Skip to content

Commit

Permalink
Remove artificial timeouts as current timeout for build jobs is 6h.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowack committed Dec 2, 2020
1 parent 8a9c2db commit 4411278
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions scripts/build/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,22 +58,13 @@ run_tests() {
coverage_setup "${build_dir}"
fi

if [[ -n "${SANITIZER_BUILD+x}" ]]; then # Check for existance of variable
if [[ -n "${SANITIZER_BUILD}" ]]; then # Check for variable not being empty string
for num in {1..10}; do sleep 120; echo 'Keep Travis alive'; done &
fi
fi

make systemtests || return 1

# If metaSMT is the only solver, then rerun lit tests with non-default metaSMT backends
if [ "X${SOLVERS}" == "XmetaSMT" ]; then
available_metasmt_backends="btor stp z3 yices2 cvc4"
for backend in $available_metasmt_backends; do
if [ "X${METASMT_DEFAULT}" != "X$backend" ]; then
if [ "$backend" == "cvc4" ]; then
for num in {1..10}; do sleep 120; echo 'Keep Travis alive'; done &
fi
lit -v --param klee_opts=-metasmt-backend="$backend" --param kleaver_opts=-metasmt-backend="$backend" test/
fi
done
Expand Down

0 comments on commit 4411278

Please sign in to comment.