]> git.notmuchmail.org Git - notmuch/blob - test/notmuch-test
tests: run all tests in parallel, if available
[notmuch] / test / notmuch-test
1 #!/usr/bin/env bash
2
3 # Run tests
4 #
5 # Copyright (c) 2005 Junio C Hamano
6 # Copyright (c) 2010 Notmuch Developers
7 #
8 # Adapted from a Makefile to a shell script by Carl Worth (2010)
9
10 if [ ${BASH_VERSINFO[0]} -lt 4 ]; then
11     echo "Error: The notmuch test suite requires a bash version >= 4.0"
12     echo "due to use of associative arrays within the test suite."
13     echo "Please try again with a newer bash (or help us fix the"
14     echo "test suite to be more portable). Thanks."
15     exit 1
16 fi
17
18 # Ensure NOTMUCH_SRCDIR and NOTMUCH_BUILDDIR are set.
19 . $(dirname "$0")/export-dirs.sh || exit 1
20
21 TESTS=
22 for test in $NOTMUCH_TESTS; do
23     TESTS="$TESTS $NOTMUCH_SRCDIR/test/$test"
24 done
25
26 if [[ -z "$TESTS" ]]; then
27     TESTS="$NOTMUCH_SRCDIR/test/T[0-9][0-9][0-9]-*.sh"
28 fi
29
30 # Clean up any results from a previous run
31 rm -rf $NOTMUCH_BUILDDIR/test/test-results
32
33 # Test for timeout utility
34 if command -v timeout >/dev/null; then
35     TEST_TIMEOUT_CMD="timeout 2m"
36     echo "INFO: using 2 minute timeout for tests"
37 else
38     TEST_TIMEOUT_CMD=""
39 fi
40
41 trap 'e=$?; kill $!; exit $e' HUP INT TERM
42 # Run the tests
43 if command -v parallel >/dev/null ; then
44     if parallel -h | grep -q GNU ; then
45         echo "INFO: running tests with GNU parallel"
46         printf '%s\n' $TESTS | $TEST_TIMEOUT_CMD parallel
47     else
48         echo "INFO: running tests with moreutils parallel"
49         $TEST_TIMEOUT_CMD parallel -- $TESTS
50     fi
51 else
52     for test in $TESTS; do
53         $TEST_TIMEOUT_CMD $test "$@" &
54         wait $!
55         # If the test failed without producing results, then it aborted,
56         # so we should abort, too.
57         RES=$?
58         testname=$(basename $test .sh)
59         if [[ $RES != 0 && ! -e "$NOTMUCH_BUILDDIR/test/test-results/$testname" ]]; then
60             exit $RES
61         fi
62     done
63 fi
64 trap - HUP INT TERM
65
66 # Report results
67 echo
68 $NOTMUCH_SRCDIR/test/aggregate-results.sh $NOTMUCH_BUILDDIR/test/test-results/*
69 ev=$?
70
71 # Clean up
72 rm -rf $NOTMUCH_BUILDDIR/test/test-results
73
74 exit $ev