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."
30 search-position-overlap-bug
31 search-insufficient-from-quoting
51 emacs-large-search-buffer
52 emacs-subject-to-filename
56 search-folder-coherence
62 emacs-address-cleaning
71 TESTS=${NOTMUCH_TESTS:=$TESTS}
73 # Clean up any results from a previous run
74 rm -r test-results >/dev/null 2>/dev/null
76 # test for timeout utility
77 if command -v timeout >/dev/null; then
78 TEST_TIMEOUT_CMD="timeout 2m "
79 echo "INFO: using 2 minute timeout for tests"
84 trap 'e=$?; kill $!; exit $e' HUP INT TERM
86 for test in $TESTS; do
87 $TEST_TIMEOUT_CMD ./$test "$@" &
89 # If the test failed without producing results, then it aborted,
90 # so we should abort, too.
92 if [[ $RES != 0 && ! -e "test-results/${test%.sh}" ]]; then
99 ./aggregate-results.sh test-results/*
102 rm -rf test-results corpus.mail