5 # Copyright (c) 2005 Junio C Hamano
7 # Adapted from a Makefile to a shell script by Carl Worth (2010)
9 if [ ${BASH_VERSINFO[0]} -lt 4 ]; then
10 echo "Error: The notmuch test suite requires a bash version >= 4.0"
11 echo "due to use of associative arrays within the test suite."
12 echo "Please try again with a newer bash (or help us fix the"
13 echo "test suite to be more portable). Thanks."
19 TESTS=${NOTMUCH_TESTS:-`echo T[0-9][0-9][0-9]-*.sh`}
21 # Clean up any results from a previous run
22 rm -r test-results >/dev/null 2>/dev/null
24 # test for timeout utility
25 if command -v timeout >/dev/null; then
26 TEST_TIMEOUT_CMD="timeout 2m "
27 echo "INFO: using 2 minute timeout for tests"
32 trap 'e=$?; kill $!; exit $e' HUP INT TERM
34 for test in $TESTS; do
35 $TEST_TIMEOUT_CMD ./$test "$@" &
37 # If the test failed without producing results, then it aborted,
38 # so we should abort, too.
40 if [[ $RES != 0 && ! -e "test-results/${test%.sh}" ]]; then
48 ./aggregate-results.sh test-results/*
52 rm -rf test-results corpus.mail